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 android:layout_gravity="top|start" | 10 android:layout_gravity="top|start" |
11 android:orientation="horizontal"> | 11 android:orientation="horizontal"> |
12 | 12 |
13 <ImageButton | 13 <ImageButton |
14 android:id="@+id/button_one" | 14 android:id="@+id/button_one" |
15 android:layout_width="0dp" | 15 android:layout_width="0dp" |
16 android:layout_height="match_parent" | 16 android:layout_height="match_parent" |
17 android:layout_weight="1" | 17 android:layout_weight="1" |
18 android:background="?android:attr/listChoiceBackgroundIndicator" | 18 android:background="?android:attr/listChoiceBackgroundIndicator" |
19 android:scaleType="center" /> | 19 android:scaleType="center" /> |
20 | 20 |
21 <ImageButton | 21 <ImageButton |
22 android:id="@+id/button_two" | 22 android:id="@+id/button_two" |
23 android:layout_width="0dp" | 23 android:layout_width="0dp" |
24 android:layout_height="match_parent" | 24 android:layout_height="match_parent" |
25 android:layout_weight="1" | 25 android:layout_weight="1" |
26 android:background="?android:attr/listChoiceBackgroundIndicator" | 26 android:background="?android:attr/listChoiceBackgroundIndicator" |
27 android:scaleType="center" /> | 27 android:scaleType="center" /> |
28 | 28 |
29 <ImageButton | |
30 android:id="@+id/button_three" | |
31 android:layout_width="0dp" | |
32 android:layout_height="match_parent" | |
33 android:layout_weight="1" | |
34 android:background="?android:attr/listChoiceBackgroundIndicator" | |
35 android:scaleType="center" /> | |
36 </LinearLayout> | 29 </LinearLayout> |
OLD | NEW |