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 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
145 | 145 |
146 <CheckBox | 146 <CheckBox |
147 android:id="@+id/store_locally_checkbox" | 147 android:id="@+id/store_locally_checkbox" |
148 android:layout_width="wrap_content" | 148 android:layout_width="wrap_content" |
149 android:layout_height="wrap_content" | 149 android:layout_height="wrap_content" |
150 android:layout_alignParentStart="true" | 150 android:layout_alignParentStart="true" |
151 android:layout_toStartOf="@id/store_locally_tooltip_icon" | 151 android:layout_toStartOf="@id/store_locally_tooltip_icon" |
152 android:layout_centerVertical="true" | 152 android:layout_centerVertical="true" |
153 android:layout_marginStart="17dp" | 153 android:layout_marginStart="17dp" |
154 android:layout_marginEnd="10dp" | 154 android:layout_marginEnd="10dp" |
155 android:paddingStart="7dp" | |
156 android:textSize="14sp" | 155 android:textSize="14sp" |
157 android:textColor="@color/explanation_text_color" | 156 android:textColor="@color/explanation_text_color" |
158 android:text="@string/autofill_card_unmask_prompt_storage_checkb
ox" /> | 157 android:text="@string/autofill_card_unmask_prompt_storage_checkb
ox" /> |
159 | 158 |
160 </RelativeLayout> | 159 </RelativeLayout> |
161 </LinearLayout> | 160 </LinearLayout> |
162 | 161 |
163 <LinearLayout | 162 <LinearLayout |
164 android:id="@+id/verification_overlay" | 163 android:id="@+id/verification_overlay" |
165 android:layout_width="wrap_content" | 164 android:layout_width="wrap_content" |
(...skipping 22 matching lines...) Expand all Loading... |
188 android:contentDescription="@null" /> | 187 android:contentDescription="@null" /> |
189 | 188 |
190 <TextView | 189 <TextView |
191 android:id="@+id/verification_message" | 190 android:id="@+id/verification_message" |
192 android:layout_width="wrap_content" | 191 android:layout_width="wrap_content" |
193 android:layout_height="wrap_content" | 192 android:layout_height="wrap_content" |
194 android:textColor="@color/light_active_color" | 193 android:textColor="@color/light_active_color" |
195 android:textSize="20sp" /> | 194 android:textSize="20sp" /> |
196 </LinearLayout> | 195 </LinearLayout> |
197 </RelativeLayout> | 196 </RelativeLayout> |
OLD | NEW |