2016-01-11 17:22:02 -05:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="70dp"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:background="?android:attr/selectableItemBackground" >
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/task_cycle"
|
2017-03-16 18:02:47 -04:00
|
|
|
android:layout_width="30dp"
|
2016-01-11 17:22:02 -05:00
|
|
|
android:layout_height="wrap_content"
|
2017-03-16 18:02:47 -04:00
|
|
|
android:layout_marginTop="15dp"
|
2016-01-11 17:22:02 -05:00
|
|
|
android:paddingTop="10dp"
|
|
|
|
android:textAppearance="?attr/textAppearanceListItem" />
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/task_id"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:visibility="gone" />
|
2017-03-16 18:02:47 -04:00
|
|
|
<ImageView
|
2017-12-27 10:23:23 +01:00
|
|
|
android:id="@+id/task_icon"
|
2017-03-16 18:02:47 -04:00
|
|
|
android:layout_width="24dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:paddingTop="10dp"
|
|
|
|
android:layout_marginEnd="5dp"
|
|
|
|
android:layout_marginTop="10dp"
|
|
|
|
android:contentDescription="@string/task_alarm"/>
|
2016-01-11 17:22:02 -05:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/task_name"
|
2017-03-16 18:02:47 -04:00
|
|
|
android:layout_marginTop="15dp"
|
2016-01-11 17:22:02 -05:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textAppearance="?attr/textAppearanceListItem"
|
|
|
|
android:textSize="25sp"/>
|
|
|
|
</LinearLayout>
|