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 15 matching lines...) Expand all Loading... |
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/chooser_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"/> |
(...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
273 | 273 |
274 <View | 274 <View |
275 android:id="@+id/positive_button_end_padding" | 275 android:id="@+id/positive_button_end_padding" |
276 android:layout_width="0dp" | 276 android:layout_width="0dp" |
277 android:layout_height="0dp" | 277 android:layout_height="0dp" |
278 android:layout_weight="1" | 278 android:layout_weight="1" |
279 android:visibility="gone"/> | 279 android:visibility="gone"/> |
280 </LinearLayout> | 280 </LinearLayout> |
281 | 281 |
282 </org.chromium.chrome.browser.signin.AccountSigninView> | 282 </org.chromium.chrome.browser.signin.AccountSigninView> |
OLD | NEW |