OLD | NEW |
1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
2 <!-- Copyright 2014 The Chromium Authors. All rights reserved. | 2 <!-- Copyright 2014 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 | 7 |
8 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" | 8 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" |
9 android:layout_width="wrap_content" | 9 android:layout_width="wrap_content" |
10 android:layout_height="wrap_content"> | 10 android:layout_height="wrap_content"> |
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
119 <CheckBox | 119 <CheckBox |
120 android:id="@+id/store_locally_checkbox" | 120 android:id="@+id/store_locally_checkbox" |
121 android:layout_width="match_parent" | 121 android:layout_width="match_parent" |
122 android:layout_height="wrap_content" | 122 android:layout_height="wrap_content" |
123 android:layout_marginStart="17dp" | 123 android:layout_marginStart="17dp" |
124 android:layout_marginEnd="10dp" | 124 android:layout_marginEnd="10dp" |
125 android:layout_marginTop="16dp" | 125 android:layout_marginTop="16dp" |
126 android:paddingStart="7dp" | 126 android:paddingStart="7dp" |
127 android:textSize="14sp" | 127 android:textSize="14sp" |
128 android:textColor="@color/explanation_text_color" | 128 android:textColor="@color/explanation_text_color" |
129 android:text="@string/autofill_card_unmask_prompt_store_locally" /> | 129 android:text="@string/autofill_card_unmask_prompt_storage_checkbox"
/> |
130 </LinearLayout> | 130 </LinearLayout> |
131 | 131 |
132 <LinearLayout | 132 <LinearLayout |
133 android:id="@+id/verification_overlay" | 133 android:id="@+id/verification_overlay" |
134 android:layout_width="wrap_content" | 134 android:layout_width="wrap_content" |
135 android:layout_height="wrap_content" | 135 android:layout_height="wrap_content" |
136 android:layout_alignTop="@+id/main_contents" | 136 android:layout_alignTop="@+id/main_contents" |
137 android:layout_alignBottom="@+id/main_contents" | 137 android:layout_alignBottom="@+id/main_contents" |
138 android:layout_alignStart="@+id/main_contents" | 138 android:layout_alignStart="@+id/main_contents" |
139 android:layout_alignEnd="@+id/main_contents" | 139 android:layout_alignEnd="@+id/main_contents" |
(...skipping 19 matching lines...) Expand all Loading... |
159 android:contentDescription="@null" /> | 159 android:contentDescription="@null" /> |
160 | 160 |
161 <TextView | 161 <TextView |
162 android:id="@+id/verification_message" | 162 android:id="@+id/verification_message" |
163 android:layout_width="wrap_content" | 163 android:layout_width="wrap_content" |
164 android:layout_height="wrap_content" | 164 android:layout_height="wrap_content" |
165 android:textColor="?attr/colorAccent" | 165 android:textColor="?attr/colorAccent" |
166 android:textSize="20sp" /> | 166 android:textSize="20sp" /> |
167 </LinearLayout> | 167 </LinearLayout> |
168 </RelativeLayout> | 168 </RelativeLayout> |
OLD | NEW |