blob: 5e7a27ba04020a7aa2efa4c0dc4d8ab3d347a4b2 [file] [log] [blame]
Leon Scrogginsb6b7f9e2009-06-18 12:05:28 -04001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2008 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
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10 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
17<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
18 android:layout_width="fill_parent"
19 android:orientation="vertical"
20 android:padding="4dip"
Leon Scroggins266ef432009-07-07 11:25:28 -040021 >
Leon Scrogginsb6b7f9e2009-06-18 12:05:28 -040022
23 <ImageView android:id="@+id/thumb"
Leon Scroggins266ef432009-07-07 11:25:28 -040024 android:src="@drawable/blank"
Leon Scrogginsb6b7f9e2009-06-18 12:05:28 -040025 android:scaleType="center"
26 android:layout_width="fill_parent"
Leon Scroggins266ef432009-07-07 11:25:28 -040027 android:layout_height="fill_parent"
28 />
29
30<!--
31 <ImageView android:id="@+id/fav"
32 android:scaleType="center"
33 android:layout_width="20dip"
34 android:layout_height="20dip"
35 />
36-->
Leon Scrogginsb6b7f9e2009-06-18 12:05:28 -040037
38 <TextView android:id="@+id/label"
39 android:layout_width="fill_parent"
40 android:layout_height="wrap_content"
41 android:layout_gravity="bottom"
Leon Scroggins266ef432009-07-07 11:25:28 -040042 android:textAppearance="?android:attr/textAppearanceSmall"
43 android:textStyle="bold"
Leon Scrogginsb6b7f9e2009-06-18 12:05:28 -040044 android:textColor="@color/white"
45 android:maxLines="1"
46 android:paddingTop="3dip"
47 android:paddingBottom="3dip"
48 android:paddingLeft="2dip"
49 android:paddingRight="2dip"
50 android:scrollHorizontally="true"
Leon Scroggins266ef432009-07-07 11:25:28 -040051 android:ellipsize="marquee"
52 />
Leon Scrogginsb6b7f9e2009-06-18 12:05:28 -040053</LinearLayout>