bashgid/android/res/layout/drawer_list_element.xml

30 lines
995 B
XML
Raw Normal View History

2014-10-24 04:31:52 +00:00
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/LinearLayout2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="8dp"
2014-11-12 03:34:24 +00:00
android:orientation="horizontal"
android:padding="4dp" >
2014-10-24 04:31:52 +00:00
<ImageView
android:id="@+id/imageView"
2014-11-12 03:34:24 +00:00
android:layout_width="24dp"
android:layout_height="24dp"
2014-10-24 04:31:52 +00:00
android:layout_margin="4dp"
2014-11-12 03:34:24 +00:00
android:layout_marginLeft="10dp"
2014-10-24 04:31:52 +00:00
android:src="@drawable/test_drawer_icon" />
<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_margin="4dp"
2014-11-12 03:34:24 +00:00
android:paddingLeft="10dp"
2014-10-24 04:31:52 +00:00
android:text="TextView"
android:textColor="@color/text_white"
2014-11-12 03:34:24 +00:00
android:textSize="20sp" />
2014-10-24 04:31:52 +00:00
</LinearLayout>