OLD | NEW |
1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
2 <!-- Copyright 2014 The Chromium Authors. All rights reserved. | 2 <!-- Copyright 2014 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 <ScrollView xmlns:android="http://schemas.android.com/apk/res/android" | 6 <ScrollView xmlns:android="http://schemas.android.com/apk/res/android" |
7 xmlns:app="http://schemas.android.com/apk/res-auto" | 7 xmlns:app="http://schemas.android.com/apk/res-auto" |
8 android:layout_width="match_parent" | 8 android:layout_width="match_parent" |
9 android:layout_height="match_parent" | 9 android:layout_height="match_parent" |
10 android:fillViewport="true" > | 10 android:fillViewport="true" > |
11 | 11 |
12 <LinearLayout | 12 <LinearLayout |
13 android:layout_width="match_parent" | 13 android:layout_width="match_parent" |
14 android:layout_height="wrap_content" | 14 android:layout_height="wrap_content" |
15 android:orientation="vertical" | 15 android:orientation="vertical" |
16 android:focusableInTouchMode="true" > | 16 android:focusableInTouchMode="true" > |
17 | 17 |
| 18 <!-- EditText views in FloatLabelLayout require both hint and contentDes
cription to be set |
| 19 to work correctly for accessibility because FloatLabelLayout someti
mes clear hint. --> |
| 20 <!--suppress ContentDescription --> |
18 <LinearLayout | 21 <LinearLayout |
19 style="@style/PreferenceScreenLayout" | 22 style="@style/PreferenceScreenLayout" |
20 android:layout_width="match_parent" | 23 android:layout_width="match_parent" |
21 android:layout_height="wrap_content" | 24 android:layout_height="wrap_content" |
22 android:orientation="vertical" > | 25 android:orientation="vertical" > |
23 | 26 |
24 <!-- Editable fields for the profile --> | 27 <!-- Editable fields for the profile --> |
25 <LinearLayout | 28 <LinearLayout |
26 android:layout_width="match_parent" | 29 android:layout_width="match_parent" |
27 android:layout_height="match_parent" | 30 android:layout_height="match_parent" |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 android:text="@string/cancel" /> | 100 android:text="@string/cancel" /> |
98 | 101 |
99 <Button | 102 <Button |
100 android:id="@+id/autofill_profile_save" | 103 android:id="@+id/autofill_profile_save" |
101 style="@style/ButtonBarButton" | 104 style="@style/ButtonBarButton" |
102 android:text="@string/save" /> | 105 android:text="@string/save" /> |
103 </LinearLayout> | 106 </LinearLayout> |
104 </LinearLayout> | 107 </LinearLayout> |
105 | 108 |
106 </ScrollView> | 109 </ScrollView> |
OLD | NEW |