2011-12-13 12:15:17 -08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2012-05-21 04:12:37 -07:00
|
|
|
<!-- This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
- License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
|
|
|
|
|
2012-04-18 15:34:28 -07:00
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="146dip"
|
|
|
|
android:layout_height="wrap_content"
|
2012-07-20 16:21:14 -07:00
|
|
|
android:paddingTop="4dip">
|
2011-12-13 12:15:17 -08:00
|
|
|
|
2012-04-18 15:34:28 -07:00
|
|
|
<ImageView android:id="@+id/thumbnail"
|
2012-07-27 23:13:34 -07:00
|
|
|
android:layout_width="@dimen/tab_thumbnail_width"
|
|
|
|
android:layout_height="@dimen/tab_thumbnail_height"
|
2012-04-18 15:34:28 -07:00
|
|
|
android:layout_centerHorizontal="true"
|
|
|
|
android:paddingTop="2dip"
|
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
android:src="@drawable/tab_thumbnail_default"
|
|
|
|
android:scaleType="fitCenter"/>
|
2011-12-13 12:15:17 -08:00
|
|
|
|
2012-04-18 15:34:28 -07:00
|
|
|
<ImageView android:id="@+id/shadow"
|
|
|
|
android:layout_width="138dip"
|
|
|
|
android:layout_height="80dip"
|
|
|
|
android:layout_centerHorizontal="true"
|
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
android:src="@drawable/tab_thumbnail_shadow"
|
|
|
|
android:scaleType="fitCenter"/>
|
2011-12-13 12:15:17 -08:00
|
|
|
|
2012-04-18 15:34:28 -07:00
|
|
|
<TextView android:id="@+id/title"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="15dip"
|
|
|
|
android:layout_marginTop="3dip"
|
|
|
|
android:layout_below="@id/shadow"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:textColor="#000000"
|
2012-07-12 15:13:54 -07:00
|
|
|
android:textSize="9sp"
|
2012-04-18 15:34:28 -07:00
|
|
|
android:gravity="center_horizontal"/>
|
2011-12-13 12:15:17 -08:00
|
|
|
|
2012-04-18 15:34:28 -07:00
|
|
|
</RelativeLayout>
|