OLD | NEW |
1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
2 <!-- Copyright 2015 The Chromium Authors. All rights reserved. | 2 <!-- Copyright 2015 The Chromium Authors. All rights reserved. |
3 | 3 |
4 Use of this source code is governed by a BSD-style license that can be | 4 Use of this source code is governed by a BSD-style license that can be |
5 found in the LICENSE file. | 5 found in the LICENSE file. |
6 --> | 6 --> |
7 <org.chromium.chrome.browser.signin.AccountSigninView | 7 <org.chromium.chrome.browser.signin.AccountSigninView |
8 xmlns:android="http://schemas.android.com/apk/res/android" | 8 xmlns:android="http://schemas.android.com/apk/res/android" |
9 xmlns:chrome="http://schemas.android.com/apk/res-auto" | 9 xmlns:chrome="http://schemas.android.com/apk/res-auto" |
10 android:layout_width="match_parent" | 10 android:layout_width="match_parent" |
(...skipping 14 matching lines...) Expand all Loading... |
25 android:requiresFadingEdge="vertical" | 25 android:requiresFadingEdge="vertical" |
26 android:fadingEdgeLength="48dp"> | 26 android:fadingEdgeLength="48dp"> |
27 | 27 |
28 <LinearLayout | 28 <LinearLayout |
29 android:id="@+id/account_signin_choose_view_root_child_view" | 29 android:id="@+id/account_signin_choose_view_root_child_view" |
30 android:layout_width="match_parent" | 30 android:layout_width="match_parent" |
31 android:layout_height="wrap_content" | 31 android:layout_height="wrap_content" |
32 android:orientation="vertical"> | 32 android:orientation="vertical"> |
33 | 33 |
34 <!-- The layout_width/layout_height is set to 16/9 dynamically i
n Java --> | 34 <!-- The layout_width/layout_height is set to 16/9 dynamically i
n Java --> |
35 <TextView | 35 <TextView |
36 android:id="@+id/signin_title" | 36 android:id="@+id/signin_title" |
37 android:layout_width="match_parent" | 37 android:layout_width="match_parent" |
38 android:layout_height="wrap_content" | 38 android:layout_height="wrap_content" |
39 android:gravity="bottom" | 39 android:gravity="bottom" |
40 android:paddingStart="@dimen/signin_chooser_padding" | 40 android:paddingStart="@dimen/signin_chooser_padding" |
41 android:paddingEnd="@dimen/signin_chooser_padding" | 41 android:paddingEnd="@dimen/signin_chooser_padding" |
42 android:paddingBottom="@dimen/signin_chooser_padding" | 42 android:paddingBottom="@dimen/signin_chooser_padding" |
43 android:background="@color/signin_head_background" | 43 android:background="@color/signin_head_background" |
44 android:textColor="@color/default_text_color" | 44 android:textColor="@color/default_text_color" |
45 android:textSize="@dimen/fre_title_text_size" | 45 android:textSize="@dimen/fre_title_text_size" |
46 android:text="@string/sign_in_to_chrome"/> | 46 android:text="@string/sign_in_to_chrome"/> |
47 | 47 |
48 <View | 48 <View |
49 android:layout_width="match_parent" | 49 android:layout_width="match_parent" |
50 android:layout_height="1dp" | 50 android:layout_height="1dp" |
51 android:background="@color/signin_border_line_color" | 51 android:background="@color/signin_border_line_color" |
52 android:alpha="0.08"/> | 52 android:alpha="0.08"/> |
53 | 53 |
54 <TextView | 54 <TextView |
55 android:id="@+id/signin_choice_description" | 55 android:id="@+id/signin_choice_description" |
56 android:layout_width="wrap_content" | 56 android:layout_width="wrap_content" |
57 android:layout_height="wrap_content" | 57 android:layout_height="wrap_content" |
58 android:padding="@dimen/signin_chooser_padding" | 58 android:padding="@dimen/signin_chooser_padding" |
59 android:lineSpacingMultiplier="1.4" | 59 android:lineSpacingMultiplier="1.4" |
60 android:text="@string/signin_account_choice_description" | 60 android:text="@string/signin_account_choice_description" |
61 android:textColor="@color/default_text_color" | 61 android:textColor="@color/default_text_color" |
62 android:textSize="@dimen/fre_normal_text_size"/> | 62 android:textSize="@dimen/fre_normal_text_size"/> |
63 </LinearLayout> | 63 </LinearLayout> |
64 </org.chromium.chrome.browser.signin.AccountSigninChooseView> | 64 </org.chromium.chrome.browser.signin.AccountSigninChooseView> |
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
269 | 269 |
270 <View | 270 <View |
271 android:id="@+id/positive_button_end_padding" | 271 android:id="@+id/positive_button_end_padding" |
272 android:layout_width="0dp" | 272 android:layout_width="0dp" |
273 android:layout_height="0dp" | 273 android:layout_height="0dp" |
274 android:layout_weight="1" | 274 android:layout_weight="1" |
275 android:visibility="gone"/> | 275 android:visibility="gone"/> |
276 </LinearLayout> | 276 </LinearLayout> |
277 | 277 |
278 </org.chromium.chrome.browser.signin.AccountSigninView> | 278 </org.chromium.chrome.browser.signin.AccountSigninView> |
OLD | NEW |