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 | 3 |
4 Use of this source code is governed by a BSD-style license that can be | 4 Use of this source code is governed by a BSD-style license that can be |
5 found in the LICENSE file. | 5 found in the LICENSE file. |
6 --> | 6 --> |
7 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | 7 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
8 android:layout_width="match_parent" | 8 android:layout_width="match_parent" |
9 android:layout_height="?android:attr/listPreferredItemHeightSmall"> | 9 android:layout_height="?android:attr/listPreferredItemHeightSmall"> |
10 | |
11 <TextView | 10 <TextView |
12 android:id="@+id/title" | 11 android:id="@+id/title" |
13 android:layout_width="wrap_content" | 12 android:layout_width="wrap_content" |
14 android:layout_height="?android:attr/listPreferredItemHeightSmall" | 13 android:layout_height="match_parent" |
15 android:layout_gravity="start" | 14 android:layout_gravity="start" |
16 android:layout_weight="1" | 15 android:layout_weight="1" |
17 android:background="?android:attr/listChoiceBackgroundIndicator" | 16 android:background="?android:attr/listChoiceBackgroundIndicator" |
18 android:gravity="center_vertical" | 17 android:gravity="center_vertical" |
| 18 android:paddingStart="?android:attr/listPreferredItemPaddingStart" |
19 android:paddingEnd="9dp" | 19 android:paddingEnd="9dp" |
20 android:paddingStart="9dp" | |
21 android:singleLine="true" | 20 android:singleLine="true" |
22 android:textAppearance="?android:attr/textAppearanceLargePopupMenu" /> | 21 android:textAppearance="?android:attr/textAppearanceLargePopupMenu" /> |
23 | 22 |
24 <View | |
25 android:id="@+id/divider" | |
26 android:layout_width="1dp" | |
27 android:layout_height="match_parent" | |
28 android:background="?android:attr/listDivider" /> | |
29 | |
30 <ImageButton | 23 <ImageButton |
31 android:id="@+id/button" | 24 android:id="@+id/button" |
32 android:layout_width="48dp" | 25 android:layout_width="48dp" |
33 android:layout_height="48dp" | 26 android:layout_height="match_parent" |
34 android:background="?android:attr/listChoiceBackgroundIndicator" | 27 android:background="?android:attr/listChoiceBackgroundIndicator" |
35 android:padding="10dp" | 28 android:padding="10dp" |
36 android:scaleType="fitCenter" /> | 29 android:scaleType="fitCenter" /> |
37 | 30 |
38 </LinearLayout> | 31 </LinearLayout> |
OLD | NEW |