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"
|
|
|
|
android:layout_height="?listPreferredItemHeight"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:foreground="?selectableItemBackground" >
|
2015-12-02 23:25:33 -05:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/task_id"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:visibility="gone" />
|
2015-11-27 23:49:50 -05:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/task_cycle"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_margin="@dimen/text_margin"
|
|
|
|
android:textAppearance="?attr/textAppearanceListItem" />
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/task_name"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_margin="@dimen/text_margin"
|
|
|
|
android:textAppearance="?attr/textAppearanceListItem" />
|
2015-11-29 18:09:55 -05:00
|
|
|
<!--<Button
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/task_list_delete"
|
|
|
|
android:onClick="onDeleteTask"/>-->
|
2015-11-27 23:49:50 -05:00
|
|
|
</LinearLayout>
|