2018-11-08 18:38:54 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2018-11-12 18:20:19 +01:00
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_height="130dp"
|
2018-11-08 18:38:54 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:paddingTop="5dp"
|
2018-11-12 18:20:19 +01:00
|
|
|
android:paddingBottom="5dp"
|
2018-11-08 18:38:54 +01:00
|
|
|
android:focusable="true"
|
2018-11-12 18:20:19 +01:00
|
|
|
android:background="@color/colorPrimaryLight">
|
2018-11-08 18:38:54 +01:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/task_id"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:visibility="gone" />
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/task_icon"
|
|
|
|
android:layout_width="24dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginEnd="5dp"
|
2018-11-08 22:10:40 +01:00
|
|
|
android:layout_gravity="center"
|
2018-11-12 18:20:19 +01:00
|
|
|
android:contentDescription="@string/task_alarm" />
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/task_name"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_toEndOf="@id/task_icon"
|
|
|
|
android:textSize="20sp"
|
|
|
|
android:textStyle="bold"
|
|
|
|
android:textColor="@color/colorAccent"
|
|
|
|
android:textAppearance="?attr/textAppearanceListItem" />
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/task_cycle_icon"
|
|
|
|
android:layout_width="24dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentEnd="true"
|
|
|
|
android:layout_marginEnd="5dp"
|
|
|
|
android:src="@drawable/ic_refresh_black_24dp"
|
|
|
|
android:contentDescription="@string/task_alarm" />
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/task_cycle"
|
2018-11-08 18:38:54 +01:00
|
|
|
android:layout_width="wrap_content"
|
2018-11-12 18:20:19 +01:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="10dp"
|
|
|
|
android:layout_toStartOf="@id/task_cycle_icon"
|
|
|
|
android:textColor="#FFA6A5A5"
|
|
|
|
android:textAppearance="?attr/textAppearanceListItem" />
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/task_description"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="10dp"
|
|
|
|
android:layout_marginStart="30dp"
|
|
|
|
android:layout_below="@id/task_name"
|
|
|
|
android:maxLines="4"
|
|
|
|
android:textSize="16sp"
|
|
|
|
android:textAppearance="?attr/textAppearanceListItemSmall" />
|
|
|
|
</RelativeLayout>
|
|
|
|
|