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 <!-- Layout used by SpinnerPreference. --> | 6 <!-- Layout used by SpinnerPreference. --> |
7 | 7 |
8 <LinearLayout | 8 <LinearLayout |
9 xmlns:android="http://schemas.android.com/apk/res/android" | 9 xmlns:android="http://schemas.android.com/apk/res/android" |
10 xmlns:chrome="http://schemas.android.com/apk/res-auto" | |
11 style="@style/PreferenceLayout" | 10 style="@style/PreferenceLayout" |
12 android:layout_width="match_parent" | 11 android:layout_width="match_parent" |
13 android:layout_height="wrap_content" | 12 android:layout_height="wrap_content" |
14 android:orientation="vertical"> | 13 android:orientation="vertical"> |
15 | 14 |
16 <TextView | 15 <TextView |
17 android:id="@+id/title" | 16 android:id="@+id/title" |
18 android:layout_height="wrap_content" | 17 android:layout_height="wrap_content" |
19 android:layout_width="match_parent" /> | 18 android:layout_width="match_parent" /> |
20 | 19 |
21 <Spinner | 20 <Spinner |
22 android:id="@+id/spinner" | 21 android:id="@+id/spinner" |
23 android:layout_height="wrap_content" | 22 android:layout_height="wrap_content" |
24 android:layout_width="match_parent" | 23 android:layout_width="match_parent" |
25 android:paddingStart="0dp" | 24 android:paddingStart="0dp" |
26 android:paddingTop="6dp" | 25 android:paddingTop="6dp" |
27 android:paddingBottom="4dp" /> | 26 android:paddingBottom="4dp" /> |
28 | 27 |
29 <View style="@style/PreferenceSpinnerUnderlineView" /> | 28 <View style="@style/PreferenceSpinnerUnderlineView" /> |
30 | 29 |
31 </LinearLayout> | 30 </LinearLayout> |
OLD | NEW |