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"
|
2015-07-02 22:36:06 +00:00
|
|
|
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"
|
2015-07-02 22:36:06 +00:00
|
|
|
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"
|
2015-07-02 22:36:06 +00:00
|
|
|
android:textSize="@dimen/medium_text_size" />
|
2014-10-24 04:31:52 +00:00
|
|
|
|
|
|
|
</LinearLayout>
|