bashgid/android/res/layout/drawer_list_element.xml

30 lines
1.1 KiB
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"
android:layout_width="@dimen/drawer_image_size"
android:layout_height="@dimen/drawer_image_size"
android:layout_margin="@dimen/drawer_margin"
android:layout_marginLeft="@dimen/drawer_margin_left"
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="@dimen/drawer_margin"
android:paddingLeft="@dimen/drawer_margin_left"
2014-11-13 01:52:15 +00:00
android:text=""
2014-10-24 04:31:52 +00:00
android:textColor="@color/text_white"
android:textSize="@dimen/medium_text_size" />
2014-10-24 04:31:52 +00:00
</LinearLayout>