2018-11-08 18:38:54 +01: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="120dp"
|
|
|
|
android:paddingTop="5dp"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:focusable="true"
|
|
|
|
android:background="@color/colorPrimaryLight" >
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/task_cycle"
|
|
|
|
android:layout_width="30dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="10dp"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:textAppearance="?attr/textAppearanceListItem" />
|
|
|
|
<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:paddingTop="10dp"
|
|
|
|
android:layout_marginEnd="5dp"
|
2018-11-08 22:10:40 +01:00
|
|
|
android:layout_gravity="center"
|
2018-11-08 18:38:54 +01:00
|
|
|
android:contentDescription="@string/task_alarm"/>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="120dp"
|
|
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/task_name"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textSize="18sp"
|
|
|
|
android:textStyle="bold"
|
|
|
|
android:textColor="@color/colorAccent"
|
|
|
|
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:maxLines="4"
|
|
|
|
android:textSize="16sp"
|
|
|
|
android:textAppearance="?attr/textAppearanceListItemSmall" />
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|