bashgid/android/res/layout/drawer_list_element.xml

30 lines
992 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-13 01:52:15 +00:00
android:layout_width="48dp"
android:layout_height="48dp"
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-11-13 01:52:15 +00:00
android:contentDescription="@string/icon" />
2014-10-24 04:31:52 +00:00
<TextView
2015-06-11 06:17:27 +00:00
android:id="@+id/dateTextView"
2014-10-24 04:31:52 +00:00
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-11-13 01:52:15 +00:00
android:text=""
2014-10-24 04:31:52 +00:00
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>