|
| 1 | +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
| 2 | + android:layout_width="match_parent" |
| 3 | + android:layout_height="match_parent" |
| 4 | + android:paddingTop="@dimen/com_parse_ui_vertical_margin" |
| 5 | + android:paddingLeft="@dimen/com_parse_ui_horizontal_margin" |
| 6 | + android:paddingRight="@dimen/com_parse_ui_horizontal_margin" |
| 7 | + android:paddingBottom="@dimen/com_parse_ui_vertical_margin" |
| 8 | + android:gravity="center" |
| 9 | + android:orientation="vertical"> |
| 10 | + |
| 11 | + <include |
| 12 | + layout="@layout/com_parse_ui_parse_login_app_logo" |
| 13 | + android:layout_width="wrap_content" |
| 14 | + android:layout_height="wrap_content" |
| 15 | + android:layout_weight="0.5"/> |
| 16 | + |
| 17 | + <LinearLayout |
| 18 | + android:layout_width="match_parent" |
| 19 | + android:layout_height="0dp" |
| 20 | + android:layout_weight="0.5" |
| 21 | + android:gravity="center" |
| 22 | + android:orientation="vertical"> |
| 23 | + |
| 24 | + <TextView |
| 25 | + android:id="@+id/profile_title" |
| 26 | + android:layout_width="wrap_content" |
| 27 | + android:layout_height="wrap_content" |
| 28 | + style="@style/ParseLoginUI.TextView" |
| 29 | + android:text="@string/profile_title_logged_in" /> |
| 30 | + |
| 31 | + <TextView |
| 32 | + android:id="@+id/profile_name" |
| 33 | + android:layout_width="wrap_content" |
| 34 | + android:layout_height="wrap_content" |
| 35 | + style="@style/ParseLoginUI.TextView" /> |
| 36 | + |
| 37 | + <TextView |
| 38 | + android:id="@+id/profile_email" |
| 39 | + android:layout_width="wrap_content" |
| 40 | + android:layout_height="wrap_content" |
| 41 | + style="@style/ParseLoginUI.TextView" /> |
| 42 | + |
| 43 | + <Button |
| 44 | + android:id="@+id/login_or_logout_button" |
| 45 | + style="@style/ParseLoginUI.Button" |
| 46 | + android:layout_marginTop="@dimen/com_parse_ui_large_vertical_spacing" |
| 47 | + android:text="@string/profile_logout_button_label"/> |
| 48 | + </LinearLayout> |
| 49 | +</LinearLayout> |
0 commit comments