| 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="wrap_content" | 9 android:layout_height="wrap_content" |
| 10 android:background="?attr/selectableItemBackground" | 10 android:background="?attr/selectableItemBackground" |
| 11 android:orientation="horizontal" > | 11 android:orientation="horizontal" > |
| 12 <ImageView android:id="@+id/icon" | 12 <ImageView android:id="@+id/icon" |
| 13 android:layout_width="48dp" | 13 android:layout_width="48dp" |
| 14 android:layout_height="48dp" | 14 android:layout_height="48dp" |
| 15 android:layout_marginStart="12dp" | 15 android:layout_marginStart="12dp" |
| 16 android:padding="4dp" | 16 android:padding="4dp" |
| 17 android:scaleType="fitCenter" | 17 android:scaleType="fitCenter" |
| 18 android:contentDescription="@null" /> | 18 android:contentDescription="@null" /> |
| 19 <TextView android:id="@+id/text" | 19 <TextView android:id="@+id/text" |
| 20 android:layout_width="wrap_content" | 20 android:layout_width="wrap_content" |
| 21 android:layout_height="48dp" | 21 android:layout_height="wrap_content" |
| 22 android:gravity="start|center_vertical" | 22 android:gravity="start|center_vertical" |
| 23 android:layout_marginStart="12dp" | 23 android:layout_marginStart="12dp" |
| 24 android:maxLines="2" | |
| 25 android:textAppearance="?android:attr/textAppearanceMedium" /> | 24 android:textAppearance="?android:attr/textAppearanceMedium" /> |
| 26 </LinearLayout> | 25 </LinearLayout> |
| OLD | NEW |