blob: fa2f8aba125ad2c49b4fccb6bd4bf7560eeee219 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:orientation="horizontal"
android:padding="5dip"
android:layout_height="wrap_content" >
<ImageView
android:layout_width="24dp"
android:layout_height="24dp"
android:src="@drawable/folder" />
<TextView
android:id="@+id/header_item"
android:textAppearance="?android:textAppearanceMedium"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingLeft="5dip"
android:layout_gravity="center_vertical"
android:text="House of Cards" />
</LinearLayout>
|