1<?xml version="1.0" encoding="utf-8"?>
2<!--
3Copyright (C) 2010 The Android Open Source Project
4
5Licensed under the Apache License, Version 2.0 (the "License");
6you may not use this file except in compliance with the License.
7You may obtain a copy of the License at
8
9http://www.apache.org/licenses/LICENSE-2.0
10
11Unless required by applicable law or agreed to in writing, software
12distributed under the License is distributed on an "AS IS" BASIS,
13WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14See the License for the specific language governing permissions and
15limitations under the License.
16-->
17<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
18    android:orientation="horizontal"
19    android:gravity="center_vertical"
20    android:layout_width="fill_parent"
21    android:layout_height="wrap_content">
22
23    <ImageView
24        android:id="@+id/icon"
25        android:layout_width="80px"
26        android:adjustViewBounds="true"
27        android:paddingLeft="15px"
28        android:paddingRight="15px"
29        android:paddingTop="15px"
30        android:paddingBottom="15px"
31        android:layout_height="wrap_content"
32    />
33
34    <TextView
35        android:id="@+id/label"
36        android:layout_width="fill_parent"
37        android:layout_height="wrap_content"
38        android:minHeight="60px"
39        android:gravity="center_vertical"
40        android:textSize="14sp"
41    />
42
43</LinearLayout>