aboutsummaryrefslogtreecommitdiff
path: root/res/layout/drawer_list_item.xml
blob: 66dd5a7089b880a611cd51a52617d7fe08e38f81 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
	android:orientation="horizontal"
	android:layout_width="fill_parent"
	android:layout_height="wrap_content"
	android:paddingTop="5dip"
	android:paddingBottom="6dip">

	<ImageView
		android:id="@+id/drawer_icon"
		android:layout_width="wrap_content"
		android:layout_height="wrap_content"
		android:layout_gravity="left|center_vertical"
		android:paddingTop="1dip"
		android:paddingBottom="1dip"
		android:paddingRight="8dip"
		android:paddingLeft="10dip"/>

	<TextView
		android:id="@+id/drawer_name"
		android:layout_width="wrap_content"
		android:layout_height="wrap_content"
		android:textAppearance="?android:attr/textAppearanceLarge"
		android:singleLine="true"/>
</LinearLayout>