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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
67 <TextView | 67 <TextView |
68 android:id="@+id/error_message" | 68 android:id="@+id/error_message" |
69 android:layout_width="match_parent" | 69 android:layout_width="match_parent" |
70 android:layout_height="wrap_content" | 70 android:layout_height="wrap_content" |
71 android:textSize="16sp" | 71 android:textSize="16sp" |
72 android:layout_marginStart="24dp" | 72 android:layout_marginStart="24dp" |
73 android:layout_marginEnd="10dp" | 73 android:layout_marginEnd="10dp" |
74 android:gravity="start" | 74 android:gravity="start" |
75 android:textColor="@color/input_underline_error_color" | 75 android:textColor="@color/input_underline_error_color" |
76 android:visibility="gone" /> | 76 android:visibility="gone" /> |
| 77 |
| 78 <CheckBox |
| 79 android:id="@+id/store_locally_checkbox" |
| 80 android:layout_width="match_parent" |
| 81 android:layout_height="wrap_content" |
| 82 android:textSize="16sp" |
| 83 android:layout_marginStart="16dp" |
| 84 android:layout_marginEnd="10dp" |
| 85 android:text="@string/autofill_card_unmask_prompt_store_locally" /> |
77 </LinearLayout> | 86 </LinearLayout> |
78 | 87 |
79 <LinearLayout | 88 <LinearLayout |
80 android:id="@+id/verification_overlay" | 89 android:id="@+id/verification_overlay" |
81 android:layout_width="wrap_content" | 90 android:layout_width="wrap_content" |
82 android:layout_height="wrap_content" | 91 android:layout_height="wrap_content" |
83 android:layout_alignTop="@+id/main_contents" | 92 android:layout_alignTop="@+id/main_contents" |
84 android:layout_alignBottom="@+id/main_contents" | 93 android:layout_alignBottom="@+id/main_contents" |
85 android:layout_alignStart="@+id/main_contents" | 94 android:layout_alignStart="@+id/main_contents" |
86 android:layout_alignEnd="@+id/main_contents" | 95 android:layout_alignEnd="@+id/main_contents" |
(...skipping 19 matching lines...) Expand all Loading... |
106 android:visibility="gone" /> | 115 android:visibility="gone" /> |
107 | 116 |
108 <TextView | 117 <TextView |
109 android:id="@+id/verification_message" | 118 android:id="@+id/verification_message" |
110 android:layout_width="wrap_content" | 119 android:layout_width="wrap_content" |
111 android:layout_height="wrap_content" | 120 android:layout_height="wrap_content" |
112 android:textColor="?android:attr/colorAccent" | 121 android:textColor="?android:attr/colorAccent" |
113 android:textStyle="bold" /> | 122 android:textStyle="bold" /> |
114 </LinearLayout> | 123 </LinearLayout> |
115 </RelativeLayout> | 124 </RelativeLayout> |
OLD | NEW |