OLD | NEW |
(Empty) | |
| 1 <?xml version="1.0" encoding="utf-8"?> |
| 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 |
| 4 found in the LICENSE file. --> |
| 5 |
| 6 <merge xmlns:android="http://schemas.android.com/apk/res/android"> |
| 7 <TextView |
| 8 android:id="@+id/title" |
| 9 android:layout_width="match_parent" |
| 10 android:layout_height="wrap_content" |
| 11 style="@style/PreferenceTitle" /> |
| 12 |
| 13 <TextView |
| 14 android:id="@+id/summary" |
| 15 android:layout_width="match_parent" |
| 16 android:layout_height="wrap_content" |
| 17 style="@style/PreferenceSummary" |
| 18 android:layout_marginBottom="@dimen/pref_autofill_field_top_padding" /> |
| 19 |
| 20 <include layout="@layout/autofill_billing_address_dropdown" /> |
| 21 |
| 22 <RelativeLayout |
| 23 android:layout_width="match_parent" |
| 24 android:layout_height="wrap_content" |
| 25 android:layout_marginTop="@dimen/pref_autofill_field_top_padding"> |
| 26 |
| 27 <TextView |
| 28 android:id="@+id/edit_server_card" |
| 29 android:layout_width="wrap_content" |
| 30 android:layout_height="wrap_content" |
| 31 android:layout_alignParentTop="true" |
| 32 android:layout_alignParentEnd="true" |
| 33 android:paddingStart="@dimen/pref_autofill_touch_target_padding" |
| 34 android:paddingTop="@dimen/pref_autofill_touch_target_padding" |
| 35 android:paddingBottom="@dimen/pref_autofill_touch_target_padding" |
| 36 android:textColor="?android:attr/textColorLink" |
| 37 android:textAllCaps="true" |
| 38 android:text="@string/autofill_wallet_management_link_text" /> |
| 39 |
| 40 <TextView |
| 41 android:id="@+id/server_card_label" |
| 42 android:layout_width="wrap_content" |
| 43 android:layout_height="wrap_content" |
| 44 android:layout_alignParentTop="true" |
| 45 android:layout_alignParentStart="true" |
| 46 android:layout_toStartOf="@id/edit_server_card" |
| 47 android:paddingTop="@dimen/pref_autofill_touch_target_padding" |
| 48 android:paddingBottom="@dimen/pref_autofill_touch_target_padding" |
| 49 style="@style/PreferenceTitle" |
| 50 android:text="@string/autofill_from_google_account_long" /> |
| 51 |
| 52 <TextView |
| 53 android:id="@+id/clear_local_copy" |
| 54 android:layout_width="wrap_content" |
| 55 android:layout_height="wrap_content" |
| 56 android:layout_alignParentEnd="true" |
| 57 android:layout_below="@id/server_card_label" |
| 58 android:paddingStart="@dimen/pref_autofill_touch_target_padding" |
| 59 android:paddingTop="@dimen/pref_autofill_touch_target_padding" |
| 60 android:paddingBottom="@dimen/pref_autofill_touch_target_padding" |
| 61 android:textColor="?android:attr/textColorLink" |
| 62 android:textAllCaps="true" |
| 63 android:text="@string/autofill_clear_local_copy_button" /> |
| 64 |
| 65 <TextView |
| 66 android:id="@+id/local_copy_label" |
| 67 android:layout_width="wrap_content" |
| 68 android:layout_height="wrap_content" |
| 69 android:layout_alignParentStart="true" |
| 70 android:layout_below="@id/server_card_label" |
| 71 android:layout_toStartOf="@id/clear_local_copy" |
| 72 android:paddingTop="@dimen/pref_autofill_touch_target_padding" |
| 73 android:paddingBottom="@dimen/pref_autofill_touch_target_padding" |
| 74 style="@style/PreferenceTitle" |
| 75 android:text="@string/autofill_describe_local_copy" /> |
| 76 </RelativeLayout> |
| 77 </merge> |
OLD | NEW |