2014-05-22 01:13:36 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2015-03-12 17:48:30 +01:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="?attr/expandable_list_item_background"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:paddingBottom="5dp"
|
|
|
|
android:paddingLeft="8dp"
|
|
|
|
android:paddingRight="4dp"
|
|
|
|
android:paddingTop="5dp">
|
2014-05-24 14:02:20 +02:00
|
|
|
|
2015-03-12 17:48:30 +01:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/osmo_user_icon"
|
|
|
|
android:layout_width="26dp"
|
|
|
|
android:layout_height="26dp"
|
|
|
|
android:paddingRight="2dp"
|
|
|
|
android:paddingTop="2dp"/>
|
2014-05-24 14:02:20 +02:00
|
|
|
|
2015-03-12 17:48:30 +01:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/osmo_label"
|
2015-04-17 00:37:39 +02:00
|
|
|
android:textSize="@dimen/default_list_text_size_large"
|
2015-03-12 17:48:30 +01:00
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="10dp"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:maxLines="7"
|
|
|
|
tools:text="@string/abc_action_bar_home_description"
|
|
|
|
android:textColor="?android:textColorPrimary"/>
|
2014-11-17 16:25:17 +01:00
|
|
|
|
2015-03-12 17:48:30 +01:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/osmo_label_time"
|
2015-04-17 00:37:39 +02:00
|
|
|
android:textSize="@dimen/default_list_text_size"
|
2015-03-12 17:48:30 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="3dp"/>
|
2014-05-24 14:02:20 +02:00
|
|
|
|
2015-03-12 17:48:30 +01:00
|
|
|
<!-- <include layout="@layout/check_item" /> -->
|
2014-05-22 01:13:36 +02:00
|
|
|
|
|
|
|
</LinearLayout>
|