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 13 matching lines...) Expand all Loading... |
24 android:layout_marginEnd="10dp" | 24 android:layout_marginEnd="10dp" |
25 android:layout_marginBottom="8dp" | 25 android:layout_marginBottom="8dp" |
26 android:layout_marginTop="10dp" | 26 android:layout_marginTop="10dp" |
27 android:gravity="start" /> | 27 android:gravity="start" /> |
28 | 28 |
29 <LinearLayout | 29 <LinearLayout |
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="horizontal"> | 32 android:orientation="horizontal"> |
33 | 33 |
34 <!-- TODO(estade): add accessibility content descriptions. --> | |
35 | |
36 <LinearLayout | 34 <LinearLayout |
37 android:id="@+id/expiration_container" | 35 android:id="@+id/expiration_container" |
38 android:layout_width="wrap_content" | 36 android:layout_width="wrap_content" |
39 android:layout_height="wrap_content" | 37 android:layout_height="wrap_content" |
40 android:orientation="horizontal" | 38 android:orientation="horizontal" |
41 android:visibility="gone"> | 39 android:visibility="gone"> |
42 | 40 |
43 <EditText | 41 <EditText |
44 android:id="@+id/expiration_month" | 42 android:id="@+id/expiration_month" |
45 android:layout_width="wrap_content" | 43 android:layout_width="wrap_content" |
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
134 android:visibility="gone" /> | 132 android:visibility="gone" /> |
135 | 133 |
136 <TextView | 134 <TextView |
137 android:id="@+id/verification_message" | 135 android:id="@+id/verification_message" |
138 android:layout_width="wrap_content" | 136 android:layout_width="wrap_content" |
139 android:layout_height="wrap_content" | 137 android:layout_height="wrap_content" |
140 android:textColor="?android:attr/colorAccent" | 138 android:textColor="?android:attr/colorAccent" |
141 android:textSize="20dp" /> | 139 android:textSize="20dp" /> |
142 </LinearLayout> | 140 </LinearLayout> |
143 </RelativeLayout> | 141 </RelativeLayout> |
OLD | NEW |