61 lines
2 KiB
XML
61 lines
2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/list_item"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingLeft="16dp"
|
|
android:paddingRight="16dp"
|
|
android:paddingTop="6dp"
|
|
android:paddingBottom="6dp"
|
|
android:background="?android:attr/activatedBackgroundIndicator"
|
|
android:orientation="vertical" >
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:duplicateParentState="true"
|
|
>
|
|
|
|
<ImageView
|
|
android:id="@+id/icon"
|
|
android:layout_width="20dp"
|
|
android:layout_height="20dp"
|
|
android:layout_gravity="top"
|
|
android:layout_marginRight="8dp"
|
|
android:duplicateParentState="true" />
|
|
|
|
<TextView
|
|
android:id="@+id/title"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="top"
|
|
android:layout_weight="1"
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
android:textStyle="bold"
|
|
android:duplicateParentState="true"
|
|
android:fadingEdge="horizontal" />
|
|
|
|
<TextView
|
|
android:id="@+id/time"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="top"
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
android:duplicateParentState="true"
|
|
android:singleLine="true"
|
|
/>
|
|
|
|
</LinearLayout>
|
|
|
|
<TextView
|
|
android:id="@+id/text"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="top"
|
|
android:layout_marginLeft="28dp"
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
android:duplicateParentState="true"
|
|
android:fadingEdge="horizontal" />
|
|
|
|
|
|
</LinearLayout>
|