2015-11-27 23:49:50 -05:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2015-12-09 21:03:05 -05:00
|
|
|
android:layout_width="match_parent"
|
2015-12-10 21:01:31 -05:00
|
|
|
android:layout_height="70dp"
|
2016-01-11 17:22:02 -05:00
|
|
|
android:paddingTop="5dp"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:focusable="true"
|
|
|
|
android:background="?android:attr/selectableItemBackground" >
|
2015-11-27 23:49:50 -05:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/task_cycle"
|
2015-12-10 21:01:31 -05:00
|
|
|
android:layout_width="56dp"
|
2015-11-27 23:49:50 -05:00
|
|
|
android:layout_height="wrap_content"
|
2015-12-10 21:01:31 -05:00
|
|
|
android:paddingTop="10dp"
|
2015-11-27 23:49:50 -05:00
|
|
|
android:textAppearance="?attr/textAppearanceListItem" />
|
|
|
|
<TextView
|
2015-12-10 21:01:31 -05:00
|
|
|
android:id="@+id/task_id"
|
2015-11-27 23:49:50 -05:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2015-12-10 21:01:31 -05:00
|
|
|
android:visibility="gone" />
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2015-11-29 18:09:55 -05:00
|
|
|
android:layout_width="wrap_content"
|
2015-12-10 21:01:31 -05:00
|
|
|
android:layout_height="?listPreferredItemHeight"
|
|
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/task_name"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textAppearance="?attr/textAppearanceListItem" />
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/task_description"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:maxLines="2"
|
|
|
|
android:textColor="@color/colorPrimary"
|
2015-12-16 23:48:58 -05:00
|
|
|
android:textSize="14sp"
|
2015-12-10 21:01:31 -05:00
|
|
|
android:textAppearance="?attr/textAppearanceListItemSmall" />
|
|
|
|
</LinearLayout>
|
2015-11-27 23:49:50 -05:00
|
|
|
</LinearLayout>
|