30 lines
992 B
XML
30 lines
992 B
XML
<?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"
|
|
android:orientation="horizontal"
|
|
android:padding="4dp" >
|
|
|
|
<ImageView
|
|
android:id="@+id/imageView"
|
|
android:layout_width="48dp"
|
|
android:layout_height="48dp"
|
|
android:layout_margin="4dp"
|
|
android:layout_marginLeft="10dp"
|
|
android:contentDescription="@string/icon" />
|
|
|
|
<TextView
|
|
android:id="@+id/dateTextView"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:layout_margin="4dp"
|
|
android:paddingLeft="10dp"
|
|
android:text=""
|
|
android:textColor="@color/text_white"
|
|
android:textSize="20sp" />
|
|
|
|
</LinearLayout>
|