blob: bfddb8189a8fa129ae343049eee9f8e12e8c1cb1 [file] [log] [blame]
The Android Open Source Project9d9730a2009-03-03 19:32:37 -08001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2007 The Android Open Source Project
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
Wink Saville79085fc2009-06-09 10:27:23 -07007
The Android Open Source Project9d9730a2009-03-03 19:32:37 -08008 http://www.apache.org/licenses/LICENSE-2.0
Wink Saville79085fc2009-06-09 10:27:23 -07009
The Android Open Source Project9d9730a2009-03-03 19:32:37 -080010 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15-->
16
Wink Saville79085fc2009-06-09 10:27:23 -070017
The Android Open Source Project9d9730a2009-03-03 19:32:37 -080018<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
Romain Guy3a6cabb2010-01-08 15:07:12 -080019 android:layout_width="match_parent"
20 android:layout_height="match_parent"
The Android Open Source Project9d9730a2009-03-03 19:32:37 -080021 android:gravity="center"
22 android:orientation="horizontal">
23
24 <ImageView
25 android:id="@+id/icon"
26 android:scaleType="fitCenter"
27 android:layout_width="@android:dimen/app_icon_size"
28 android:layout_height="@android:dimen/app_icon_size"
29 android:layout_gravity="center_vertical"
30 android:layout_marginLeft="5dip"
31 />
32
Wink Saville79085fc2009-06-09 10:27:23 -070033 <TextView
The Android Open Source Project9d9730a2009-03-03 19:32:37 -080034 android:id="@+id/text"
Romain Guy3a6cabb2010-01-08 15:07:12 -080035 android:layout_width="match_parent"
The Android Open Source Project9d9730a2009-03-03 19:32:37 -080036 android:layout_height="wrap_content"
37 android:maxLength="234"
38 android:minHeight="?android:attr/listPreferredItemHeight"
39 android:textAppearance="?android:attr/textAppearanceLarge"
40 android:gravity="center_vertical"
41 android:layout_marginLeft="9dip"
42 />
43
44</LinearLayout>