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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 android:layout_columnSpan="4"/> | 76 android:layout_columnSpan="4"/> |
77 <TextView | 77 <TextView |
78 android:id="@+id/shipping_label" | 78 android:id="@+id/shipping_label" |
79 android:layout_marginLeft="@dimen/autofill_steady_margin" | 79 android:layout_marginLeft="@dimen/autofill_steady_margin" |
80 android:layout_columnSpan="2" | 80 android:layout_columnSpan="2" |
81 android:textStyle="bold" | 81 android:textStyle="bold" |
82 android:textSize="@dimen/autofill_steady_text_size"/> | 82 android:textSize="@dimen/autofill_steady_text_size"/> |
83 <Space | 83 <Space |
84 android:layout_gravity="fill" | 84 android:layout_gravity="fill" |
85 android:layout_columnSpan="2"/> | 85 android:layout_columnSpan="2"/> |
86 <CheckBox | |
87 android:id="@+id/use_billing_checkbox" | |
88 android:padding="@dimen/autofill_steady_margin" | |
89 android:textSize="@dimen/autofill_notification_text_size" | |
90 android:layout_gravity="fill_horizontal" | |
91 android:layout_columnSpan="4"/> | |
92 <Spinner | 86 <Spinner |
93 android:layout_margin="@dimen/autofill_steady_margin" | 87 android:layout_margin="@dimen/autofill_steady_margin" |
94 android:id="@+id/address_spinner" | 88 android:id="@+id/address_spinner" |
95 android:layout_gravity="fill_horizontal" | 89 android:layout_gravity="fill_horizontal" |
96 android:layout_columnSpan="4"/> | 90 android:layout_columnSpan="4"/> |
97 <LinearLayout | 91 <LinearLayout |
98 android:id="@+id/bottom_notifications" | 92 android:id="@+id/bottom_notifications" |
99 android:visibility="gone" | 93 android:visibility="gone" |
100 android:layout_gravity="fill_horizontal" | 94 android:layout_gravity="fill_horizontal" |
101 android:layout_columnSpan="4"/> | 95 android:layout_columnSpan="4"/> |
102 <View | 96 <View |
103 android:id="@+id/line_bottom" | 97 android:id="@+id/line_bottom" |
104 android:layout_height="1dp" | 98 android:layout_height="1dp" |
105 android:layout_columnSpan="4" | 99 android:layout_columnSpan="4" |
106 android:background="#D9D9DC"/> | 100 android:background="#D9D9DC"/> |
107 <Button | 101 <Button |
108 android:text="@string/autofill_terms_of_service" | 102 android:text="@string/autofill_terms_of_service" |
109 android:padding="10dp" | 103 android:padding="10dp" |
110 android:visibility="gone" | 104 android:visibility="gone" |
111 android:id="@+id/terms_info" | 105 android:id="@+id/terms_info" |
112 android:textSize="@dimen/autofill_notification_text_size" | 106 android:textSize="@dimen/autofill_notification_text_size" |
113 android:background="?android:attr/selectableItemBackground" | 107 android:background="?android:attr/selectableItemBackground" |
114 android:drawableRight="@drawable/arrow" | 108 android:drawableRight="@drawable/arrow" |
115 android:layout_columnSpan="4" | 109 android:layout_columnSpan="4" |
116 android:gravity="left"/> | 110 android:gravity="left"/> |
117 </GridLayout> | 111 </GridLayout> |
OLD | NEW |