| 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.firstrun.AccountFirstRunView | 7 <org.chromium.chrome.browser.firstrun.AccountFirstRunView |
| 8 xmlns:android="http://schemas.android.com/apk/res/android" | 8 xmlns:android="http://schemas.android.com/apk/res/android" |
| 9 android:id="@+id/fre_account_layout" | 9 android:id="@+id/fre_account_layout" |
| 10 android:layout_width="match_parent" | 10 android:layout_width="match_parent" |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 | 95 |
| 96 <!--suppress ButtonStyle --> | 96 <!--suppress ButtonStyle --> |
| 97 <Button | 97 <Button |
| 98 android:id="@+id/negative_button" | 98 android:id="@+id/negative_button" |
| 99 android:layout_width="0dp" | 99 android:layout_width="0dp" |
| 100 android:layout_height="match_parent" | 100 android:layout_height="match_parent" |
| 101 android:layout_weight="1" | 101 android:layout_weight="1" |
| 102 android:background="?attr/listChoiceBackgroundIndicator" | 102 android:background="?attr/listChoiceBackgroundIndicator" |
| 103 android:gravity="start|center_vertical" | 103 android:gravity="start|center_vertical" |
| 104 android:textDirection="locale" | 104 android:textDirection="locale" |
| 105 android:paddingStart="16dp" | 105 android:paddingStart="@dimen/fre_button_padding" |
| 106 android:paddingEnd="16dp" | 106 android:paddingEnd="@dimen/fre_button_padding" |
| 107 android:text="@string/fre_skip_text" | 107 android:text="@string/fre_skip_text" |
| 108 android:textAllCaps="true" | 108 android:textAllCaps="true" |
| 109 android:textColor="@color/light_normal_color" | 109 android:textColor="@color/light_normal_color" |
| 110 android:textSize="@dimen/fre_button_text_size" /> | 110 android:textSize="@dimen/fre_button_text_size" /> |
| 111 | 111 |
| 112 <!--suppress ButtonStyle --> | 112 <!--suppress ButtonStyle --> |
| 113 <Button | 113 <Button |
| 114 android:id="@+id/positive_button" | 114 android:id="@+id/positive_button" |
| 115 android:layout_width="0dp" | 115 android:layout_width="0dp" |
| 116 android:layout_height="match_parent" | 116 android:layout_height="match_parent" |
| 117 android:layout_weight="1" | 117 android:layout_weight="1" |
| 118 android:background="?attr/listChoiceBackgroundIndicator" | 118 android:background="?attr/listChoiceBackgroundIndicator" |
| 119 android:gravity="end|center_vertical" | 119 android:gravity="end|center_vertical" |
| 120 android:textDirection="locale" | 120 android:textDirection="locale" |
| 121 android:paddingStart="16dp" | 121 android:paddingStart="@dimen/fre_button_padding" |
| 122 android:paddingEnd="16dp" | 122 android:paddingEnd="@dimen/fre_button_padding" |
| 123 android:text="@string/choose_account_sign_in" | 123 android:text="@string/choose_account_sign_in" |
| 124 android:textAllCaps="true" | 124 android:textAllCaps="true" |
| 125 android:textColor="@color/light_active_color" | 125 android:textColor="@color/light_active_color" |
| 126 android:textSize="@dimen/fre_button_text_size" /> | 126 android:textSize="@dimen/fre_button_text_size" /> |
| 127 </LinearLayout> | 127 </LinearLayout> |
| 128 | 128 |
| 129 </org.chromium.chrome.browser.firstrun.AccountFirstRunView> | 129 </org.chromium.chrome.browser.firstrun.AccountFirstRunView> |
| OLD | NEW |