1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- Copyright 2014 The Chromium Authors. All rights reserved.
4 Use of this source code is governed by a BSD-style license that can be
5 found in the LICENSE file.
7 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
8 android:layout_width="match_parent"
9 android:layout_height="wrap_content"
10 android:background="?attr/selectableItemBackground"
11 android:orientation="horizontal" >
12 <ImageView android:id="@+id/icon"
13 android:layout_width="48dp"
14 android:layout_height="48dp"
15 android:layout_marginStart="12dp"
17 android:scaleType="fitCenter"
18 android:contentDescription="@null" />
19 <TextView android:id="@+id/text"
20 android:layout_width="wrap_content"
21 android:layout_height="48dp"
22 android:gravity="start|center_vertical"
23 android:layout_marginStart="12dp"
25 android:textAppearance="?android:attr/textAppearanceMedium" />