| OLD | NEW |
| 1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
| 2 <!-- Copyright (c) 2013 The Chromium Authors. All rights reserved. | 2 <!-- Copyright (c) 2013 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 <GridLayout xmlns:android="http://schemas.android.com/apk/res/android" | 7 <GridLayout xmlns:android="http://schemas.android.com/apk/res/android" |
| 8 android:id="@+id/general_layout" | 8 android:id="@+id/general_layout" |
| 9 android:layout_width="match_parent" | 9 android:layout_width="match_parent" |
| 10 android:layout_height="wrap_content" | 10 android:layout_height="wrap_content" |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 android:layout_gravity="fill" | 50 android:layout_gravity="fill" |
| 51 android:layout_columnSpan="2"/> | 51 android:layout_columnSpan="2"/> |
| 52 <Spinner | 52 <Spinner |
| 53 android:layout_margin="5dp" | 53 android:layout_margin="5dp" |
| 54 android:id="@+id/address_spinner" | 54 android:id="@+id/address_spinner" |
| 55 android:layout_gravity="fill_horizontal" | 55 android:layout_gravity="fill_horizontal" |
| 56 android:layout_columnSpan="4"/> | 56 android:layout_columnSpan="4"/> |
| 57 <CheckBox | 57 <CheckBox |
| 58 android:id="@+id/check_box" | 58 android:id="@+id/check_box" |
| 59 android:layout_margin="5dp" | 59 android:layout_margin="5dp" |
| 60 android:visibility="gone" |
| 60 android:textSize="12sp" | 61 android:textSize="12sp" |
| 61 android:text="@string/autofill_use_wallet" | 62 android:text="@string/autofill_use_wallet" |
| 62 android:layout_columnSpan="4"/> | 63 android:layout_columnSpan="4"/> |
| 63 <View | 64 <View |
| 64 android:id="@+id/line_bottom" | 65 android:id="@+id/line_bottom" |
| 65 android:layout_height="1dp" | 66 android:layout_height="1dp" |
| 66 android:layout_columnSpan="4" | 67 android:layout_columnSpan="4" |
| 67 android:background="#D9D9DC"/> | 68 android:background="#D9D9DC"/> |
| 68 <Button | 69 <Button |
| 69 android:text="@string/autofill_terms_of_service" | 70 android:text="@string/autofill_terms_of_service" |
| 70 android:padding="10dp" | 71 android:padding="10dp" |
| 72 android:visibility="gone" |
| 71 android:id="@+id/terms_info" | 73 android:id="@+id/terms_info" |
| 72 android:textSize="11sp" | 74 android:textSize="11sp" |
| 73 android:background="?android:attr/selectableItemBackground" | 75 android:background="?android:attr/selectableItemBackground" |
| 74 android:drawableRight="@drawable/arrow" | 76 android:drawableRight="@drawable/arrow" |
| 75 android:layout_columnSpan="4" | 77 android:layout_columnSpan="4" |
| 76 android:gravity="left"/> | 78 android:gravity="left"/> |
| 77 </GridLayout> | 79 </GridLayout> |
| OLD | NEW |