OLD | NEW |
1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
2 <!-- Copyright 2016 The Chromium Authors. All rights reserved. | 2 <!-- Copyright 2016 The Chromium Authors. All rights reserved. |
3 Use of this source code is governed by a BSD-style license that can be | 3 Use of this source code is governed by a BSD-style license that can be |
4 found in the LICENSE file. --> | 4 found in the LICENSE file. --> |
5 | 5 |
6 <merge xmlns:android="http://schemas.android.com/apk/res/android"> | 6 <merge xmlns:android="http://schemas.android.com/apk/res/android"> |
7 <TextView | 7 <TextView |
8 android:id="@+id/title" | 8 android:id="@+id/title" |
9 android:layout_width="match_parent" | 9 android:layout_width="match_parent" |
10 android:layout_height="wrap_content" | 10 android:layout_height="wrap_content" |
11 style="@style/PreferenceTitle" /> | 11 style="@style/PreferenceTitle" /> |
12 | 12 |
13 <TextView | 13 <TextView |
14 android:id="@+id/summary" | 14 android:id="@+id/summary" |
15 android:layout_width="match_parent" | 15 android:layout_width="match_parent" |
16 android:layout_height="wrap_content" | 16 android:layout_height="wrap_content" |
17 style="@style/PreferenceSummary" | 17 style="@style/PreferenceSummary" |
18 android:layout_marginBottom="@dimen/pref_autofill_field_top_padding" /> | 18 android:layout_marginBottom="@dimen/pref_autofill_field_top_margin" /> |
19 | 19 |
20 <include layout="@layout/autofill_billing_address_dropdown" /> | 20 <include layout="@layout/autofill_billing_address_dropdown" /> |
21 | 21 |
22 <RelativeLayout | 22 <RelativeLayout |
23 android:layout_width="match_parent" | 23 android:layout_width="match_parent" |
24 android:layout_height="wrap_content" | 24 android:layout_height="wrap_content" |
25 android:layout_marginTop="@dimen/pref_autofill_field_top_padding"> | 25 android:layout_marginTop="@dimen/pref_autofill_field_top_margin"> |
26 | 26 |
27 <TextView | 27 <TextView |
28 android:id="@+id/edit_server_card" | 28 android:id="@+id/edit_server_card" |
29 android:layout_width="wrap_content" | 29 android:layout_width="wrap_content" |
30 android:layout_height="wrap_content" | 30 android:layout_height="wrap_content" |
31 android:layout_alignParentTop="true" | 31 android:layout_alignParentTop="true" |
32 android:layout_alignParentEnd="true" | 32 android:layout_alignParentEnd="true" |
33 android:paddingStart="@dimen/pref_autofill_touch_target_padding" | 33 android:paddingStart="@dimen/pref_autofill_touch_target_padding" |
34 android:paddingTop="@dimen/pref_autofill_touch_target_padding" | 34 android:paddingTop="@dimen/pref_autofill_touch_target_padding" |
35 android:paddingBottom="@dimen/pref_autofill_touch_target_padding" | 35 android:paddingBottom="@dimen/pref_autofill_touch_target_padding" |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 android:layout_height="wrap_content" | 68 android:layout_height="wrap_content" |
69 android:layout_alignParentStart="true" | 69 android:layout_alignParentStart="true" |
70 android:layout_below="@id/server_card_label" | 70 android:layout_below="@id/server_card_label" |
71 android:layout_toStartOf="@id/clear_local_copy" | 71 android:layout_toStartOf="@id/clear_local_copy" |
72 android:paddingTop="@dimen/pref_autofill_touch_target_padding" | 72 android:paddingTop="@dimen/pref_autofill_touch_target_padding" |
73 android:paddingBottom="@dimen/pref_autofill_touch_target_padding" | 73 android:paddingBottom="@dimen/pref_autofill_touch_target_padding" |
74 style="@style/PreferenceTitle" | 74 style="@style/PreferenceTitle" |
75 android:text="@string/autofill_describe_local_copy" /> | 75 android:text="@string/autofill_describe_local_copy" /> |
76 </RelativeLayout> | 76 </RelativeLayout> |
77 </merge> | 77 </merge> |
OLD | NEW |