OLD | NEW |
1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
2 <!-- Copyright 2016 The Chromium Authors. All rights reserved. | 2 <!-- Copyright 2016 The Chromium Authors. All rights reserved. |
3 Use of this source code is governed by a BSD-style license that can be | 3 Use of this source code is governed by a BSD-style license that can be |
4 found in the LICENSE file. --> | 4 found in the LICENSE file. --> |
5 <org.chromium.chrome.browser.signin.SigninAndSyncView | 5 <org.chromium.chrome.browser.signin.SigninAndSyncView |
6 xmlns:android="http://schemas.android.com/apk/res/android" | 6 xmlns:android="http://schemas.android.com/apk/res/android" |
7 xmlns:chrome="http://schemas.android.com/apk/res-auto" | 7 xmlns:chrome="http://schemas.android.com/apk/res-auto" |
8 android:layout_width="match_parent" | 8 android:layout_width="match_parent" |
9 android:layout_height="wrap_content" | 9 android:layout_height="wrap_content" |
10 android:orientation="vertical" | 10 android:orientation="vertical" |
11 android:padding="16dp" > | 11 android:padding="16dp" > |
12 | 12 |
13 <TextView | 13 <TextView |
14 android:id="@+id/title" | 14 android:id="@+id/title" |
15 android:layout_width="wrap_content" | 15 android:layout_width="wrap_content" |
16 android:layout_height="wrap_content" | 16 android:layout_height="wrap_content" |
17 android:layout_marginBottom="8dp" | 17 android:layout_marginBottom="8dp" |
| 18 android:textColor="@color/default_text_color" |
18 android:textSize="16sp" | 19 android:textSize="16sp" |
19 android:textStyle="bold" /> | 20 android:textStyle="bold" /> |
20 | 21 |
21 <TextView | 22 <TextView |
22 android:id="@+id/description" | 23 android:id="@+id/description" |
23 android:layout_width="wrap_content" | 24 android:layout_width="wrap_content" |
24 android:layout_height="wrap_content" | 25 android:layout_height="wrap_content" |
| 26 android:textColor="@color/default_text_color" |
25 android:textSize="14sp" /> | 27 android:textSize="14sp" /> |
26 | 28 |
27 <LinearLayout | 29 <LinearLayout |
28 android:layout_width="wrap_content" | 30 android:layout_width="wrap_content" |
29 android:layout_height="wrap_content" | 31 android:layout_height="wrap_content" |
30 android:layout_marginTop="16dp" | 32 android:layout_marginTop="16dp" |
31 android:layout_gravity="end" | 33 android:layout_gravity="end" |
32 android:gravity="center_vertical" | 34 android:gravity="center_vertical" |
33 android:orientation="horizontal" > | 35 android:orientation="horizontal" > |
34 | 36 |
(...skipping 11 matching lines...) Expand all Loading... |
46 android:id="@+id/sign_in" | 48 android:id="@+id/sign_in" |
47 android:layout_width="wrap_content" | 49 android:layout_width="wrap_content" |
48 android:layout_height="wrap_content" | 50 android:layout_height="wrap_content" |
49 android:textAllCaps="true" | 51 android:textAllCaps="true" |
50 android:textColor="@android:color/white" | 52 android:textColor="@android:color/white" |
51 android:textSize="15sp" | 53 android:textSize="15sp" |
52 chrome:buttonColor="@color/light_active_color" /> | 54 chrome:buttonColor="@color/light_active_color" /> |
53 </LinearLayout> | 55 </LinearLayout> |
54 | 56 |
55 </org.chromium.chrome.browser.signin.SigninAndSyncView> | 57 </org.chromium.chrome.browser.signin.SigninAndSyncView> |
OLD | NEW |