|
3 | 3 | android:id="@+id/main_layout" |
4 | 4 | android:layout_width="match_parent" |
5 | 5 | android:layout_height="match_parent" |
6 | | - android:background="@color/grey_100" |
| 6 | + android:background="@color/white" |
7 | 7 | android:orientation="vertical" |
8 | 8 | android:weightSum="4"> |
9 | 9 |
|
|
17 | 17 |
|
18 | 18 | <LinearLayout |
19 | 19 | android:layout_width="match_parent" |
20 | | - android:layout_height="0dp" |
| 20 | + android:layout_height="250dp" |
21 | 21 | android:layout_weight="3" |
22 | | - android:gravity="center_horizontal" |
23 | 22 | android:orientation="vertical"> |
24 | 23 |
|
25 | 24 | <ImageView |
26 | | - style="@style/ThemeOverlay.FirebaseIcon" |
27 | 25 | android:id="@+id/googleIcon" |
| 26 | + style="@style/ThemeOverlay.FirebaseIcon" |
| 27 | + android:layout_width="246dp" |
| 28 | + android:layout_height="159dp" |
28 | 29 | android:contentDescription="@string/desc_firebase_lockup" |
29 | | - android:src="@mipmap/firebase_lockup_400" |
30 | | - android:layout_width="wrap_content" |
31 | | - android:layout_height="wrap_content" /> |
| 30 | + android:layout_gravity="center_horizontal" |
| 31 | + android:scrollbarSize="@android:dimen/notification_large_icon_height" |
| 32 | + android:src="@mipmap/firebase_lockup_400" /> |
32 | 33 |
|
33 | 34 | <TextView |
34 | 35 | android:id="@+id/titleText" |
35 | | - android:layout_width="wrap_content" |
| 36 | + android:layout_width="265dp" |
36 | 37 | android:layout_height="wrap_content" |
| 38 | + android:layout_gravity="center_horizontal" |
37 | 39 | android:layout_marginBottom="@dimen/title_bottom_margin" |
38 | 40 | android:text="@string/google_title_text" |
39 | 41 | android:theme="@style/ThemeOverlay.MyTitleText" /> |
40 | 42 |
|
41 | 43 | <TextView |
42 | 44 | android:id="@+id/status" |
43 | 45 | style="@style/ThemeOverlay.MyTextDetail" |
| 46 | + android:layout_width="158dp" |
| 47 | + android:layout_gravity="center_horizontal" |
44 | 48 | android:text="@string/signed_out" /> |
45 | 49 |
|
46 | 50 | <TextView |
47 | 51 | android:id="@+id/detail" |
48 | 52 | style="@style/ThemeOverlay.MyTextDetail" |
| 53 | + android:layout_width="248dp" |
| 54 | + android:layout_height="wrap_content" |
| 55 | + android:layout_gravity="center_horizontal" |
49 | 56 | tools:text="Firebase User ID: 123456789abc" /> |
50 | 57 |
|
| 58 | + <TextView |
| 59 | + android:id="@+id/textView" |
| 60 | + android:layout_width="377dp" |
| 61 | + android:layout_height="149dp" |
| 62 | + android:layout_gravity="center_horizontal" |
| 63 | + android:gravity="center" |
| 64 | + android:text="The unauthorized reproduction or distribution of this copyrighted work is illegal. Criminal copyright infringement, including gain, is investigated byb the FBI and is punishable by up to 5 years in federal prison and a fine of $250,000." |
| 65 | + android:textSize="18sp" /> |
| 66 | + |
| 67 | + <Button |
| 68 | + android:id="@+id/button6" |
| 69 | + android:layout_width="wrap_content" |
| 70 | + android:layout_height="wrap_content" |
| 71 | + android:text="Button" |
| 72 | + |
| 73 | + android:textSize="24sp" /> |
| 74 | + |
| 75 | + <Button |
| 76 | + android:id="@+id/button7" |
| 77 | + android:layout_width="match_parent" |
| 78 | + android:layout_height="wrap_content" |
| 79 | + android:text="Button" /> |
| 80 | + |
51 | 81 | </LinearLayout> |
52 | 82 |
|
53 | 83 | <RelativeLayout |
|
70 | 100 | android:layout_height="wrap_content" |
71 | 101 | android:layout_centerInParent="true" |
72 | 102 | android:orientation="horizontal" |
73 | | - android:paddingLeft="16dp" |
74 | | - android:paddingRight="16dp" |
| 103 | + android:paddingLeft="14dp" |
| 104 | + android:paddingRight="14dp" |
75 | 105 | android:visibility="gone" |
76 | 106 | tools:visibility="visible"> |
77 | 107 |
|
78 | 108 | <Button |
79 | 109 | android:id="@+id/signOutButton" |
80 | | - android:layout_width="0dp" |
81 | | - android:layout_height="102dp" |
| 110 | + android:layout_width="wrap_content" |
| 111 | + android:layout_height="wrap_content" |
82 | 112 | android:layout_marginStart="@dimen/button_horizontal_margin" |
83 | 113 | android:layout_marginEnd="@dimen/button_horizontal_margin" |
84 | 114 | android:layout_weight="1" |
85 | 115 | android:text="@string/sign_out" |
| 116 | + android:textSize="24sp" |
| 117 | + android:gravity="bottom" |
86 | 118 | android:theme="@style/ThemeOverlay.MyDarkButton" /> |
87 | 119 |
|
88 | 120 | <Button |
89 | 121 | android:id="@+id/disconnectButton" |
90 | | - android:layout_width="0dp" |
91 | | - android:layout_height="122dp" |
| 122 | + android:layout_width="wrap_content" |
| 123 | + android:layout_height="wrap_content" |
92 | 124 | android:layout_marginStart="@dimen/button_horizontal_margin" |
93 | 125 | android:layout_marginEnd="@dimen/button_horizontal_margin" |
94 | 126 | android:layout_weight="1" |
95 | 127 | android:text="@string/disconnect" |
| 128 | + android:textSize="24sp" |
96 | 129 | android:theme="@style/ThemeOverlay.MyDarkButton" /> |
97 | 130 | </LinearLayout> |
98 | 131 |
|
|
0 commit comments