OLD | NEW |
| (Empty) |
1 <?xml version="1.0" encoding="utf-8"?> | |
2 <!-- Copyright (c) 2013 The Chromium Authors. All rights reserved. | |
3 | |
4 Use of this source code is governed by a BSD-style license that can be | |
5 found in the LICENSE file. | |
6 --> | |
7 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
8 android:id="@+id/general_layout" | |
9 android:layout_width="match_parent" | |
10 android:layout_height="wrap_content" | |
11 android:orientation="vertical"> | |
12 <CheckBox | |
13 android:id="@+id/top_checkbox_notification" | |
14 android:layout_width="match_parent" | |
15 android:layout_height="@dimen/autofill_edit_height" | |
16 android:textSize="@dimen/autofill_notification_text_size" | |
17 android:visibility="gone"/> | |
18 <LinearLayout | |
19 android:id="@+id/top_notifications" | |
20 android:layout_width="match_parent" | |
21 android:layout_height="wrap_content" | |
22 android:orientation="vertical" | |
23 android:visibility="gone"/> | |
24 <TextView | |
25 android:id="@+id/cc_billing_label" | |
26 android:layout_width="match_parent" | |
27 android:layout_height="wrap_content" | |
28 android:layout_marginStart="@dimen/autofill_steady_margin" | |
29 android:textSize="@dimen/autofill_steady_text_size" | |
30 android:textStyle="bold"/> | |
31 <Spinner | |
32 android:id="@+id/cc_billing_spinner" | |
33 android:layout_width="match_parent" | |
34 android:layout_height="@dimen/autofill_edit_height" | |
35 android:layout_margin="@dimen/autofill_steady_margin" | |
36 android:dropDownVerticalOffset="@dimen/autofill_spinner_offset" | |
37 android:padding="@dimen/autofill_menu_item_padding"/> | |
38 <TextView | |
39 android:id="@+id/cc_label" | |
40 android:layout_width="match_parent" | |
41 android:layout_height="wrap_content" | |
42 android:layout_marginStart="@dimen/autofill_steady_margin" | |
43 android:textSize="@dimen/autofill_steady_text_size" | |
44 android:textStyle="bold"/> | |
45 <Spinner | |
46 android:id="@+id/cc_spinner" | |
47 android:layout_width="match_parent" | |
48 android:layout_height="@dimen/autofill_edit_height" | |
49 android:layout_margin="@dimen/autofill_steady_margin" | |
50 android:dropDownVerticalOffset="@dimen/autofill_spinner_offset" | |
51 android:padding="@dimen/autofill_menu_item_padding"/> | |
52 <TextView | |
53 android:id="@+id/billing_label" | |
54 android:layout_width="match_parent" | |
55 android:layout_height="wrap_content" | |
56 android:layout_marginStart="@dimen/autofill_steady_margin" | |
57 android:textSize="@dimen/autofill_steady_text_size" | |
58 android:textStyle="bold"/> | |
59 <Spinner | |
60 android:id="@+id/billing_spinner" | |
61 android:layout_width="match_parent" | |
62 android:layout_height="@dimen/autofill_edit_height" | |
63 android:layout_margin="@dimen/autofill_steady_margin" | |
64 android:dropDownVerticalOffset="@dimen/autofill_spinner_offset" | |
65 android:padding="@dimen/autofill_menu_item_padding" | |
66 android:visibility="gone"/> | |
67 <TextView | |
68 android:id="@+id/shipping_label" | |
69 android:layout_width="match_parent" | |
70 android:layout_height="wrap_content" | |
71 android:layout_marginStart="@dimen/autofill_steady_margin" | |
72 android:textSize="@dimen/autofill_steady_text_size" | |
73 android:textStyle="bold"/> | |
74 <Spinner | |
75 android:id="@+id/address_spinner" | |
76 android:layout_width="match_parent" | |
77 android:layout_height="@dimen/autofill_edit_height" | |
78 android:layout_margin="@dimen/autofill_steady_margin" | |
79 android:dropDownVerticalOffset="@dimen/autofill_spinner_offset" | |
80 android:padding="@dimen/autofill_menu_item_padding"/> | |
81 <TextView | |
82 android:id="@+id/email_label" | |
83 android:layout_width="match_parent" | |
84 android:layout_height="wrap_content" | |
85 android:layout_marginStart="@dimen/autofill_steady_margin" | |
86 android:textSize="@dimen/autofill_steady_text_size" | |
87 android:textStyle="bold"/> | |
88 <Spinner | |
89 android:id="@+id/email_spinner" | |
90 android:layout_width="match_parent" | |
91 android:layout_height="@dimen/autofill_edit_height" | |
92 android:layout_margin="@dimen/autofill_steady_margin" | |
93 android:dropDownVerticalOffset="@dimen/autofill_spinner_offset" | |
94 android:padding="@dimen/autofill_menu_item_padding"/> | |
95 <CheckBox | |
96 android:id="@+id/save_locally_checkbox" | |
97 android:layout_width="match_parent" | |
98 android:layout_height="@dimen/autofill_edit_height" | |
99 android:textSize="@dimen/autofill_notification_text_size" | |
100 android:visibility="gone"/> | |
101 <LinearLayout | |
102 android:id="@+id/bottom_notifications" | |
103 android:layout_width="match_parent" | |
104 android:layout_height="wrap_content" | |
105 android:orientation="vertical" | |
106 android:visibility="gone"/> | |
107 <View | |
108 android:id="@+id/line_bottom" | |
109 android:layout_width="match_parent" | |
110 android:layout_height="1dp" | |
111 android:background="#D9D9DC"/> | |
112 <Button | |
113 android:id="@+id/terms_info" | |
114 android:layout_width="match_parent" | |
115 android:layout_height="wrap_content" | |
116 android:background="?android:attr/selectableItemBackground" | |
117 android:gravity="start" | |
118 android:padding="10dp" | |
119 android:text="@string/autofill_terms_of_service" | |
120 android:textSize="@dimen/autofill_notification_text_size" | |
121 android:visibility="gone"/> | |
122 </LinearLayout> | |
OLD | NEW |