2017-06-21 17:34:53 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-09-04 16:17:34 +00:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
android:layout_width="match_parent"
|
2017-06-21 17:34:53 +00:00
|
|
|
android:layout_height="wrap_content"
|
2020-09-04 16:17:34 +00:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2017-06-21 17:34:53 +00:00
|
|
|
android:minHeight="60dp"
|
2017-06-22 16:32:13 +00:00
|
|
|
android:elevation="2dp"
|
|
|
|
|
android:layout_margin="4dp"
|
2020-08-25 11:21:27 +00:00
|
|
|
android:background="@drawable/task_background"
|
2017-09-25 15:34:56 +00:00
|
|
|
android:orientation="vertical"
|
|
|
|
|
android:padding="0dp">
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:id="@+id/taskHolder"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_margin="0dp"
|
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
|
android:minHeight="60dp">
|
|
|
|
|
<FrameLayout
|
|
|
|
|
android:id="@+id/checkBoxHolder"
|
|
|
|
|
android:layout_width="@dimen/button_width"
|
2020-09-17 11:23:27 +00:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
tools:background="@color/red_10">
|
|
|
|
|
<View
|
2020-09-18 16:34:53 +00:00
|
|
|
android:id="@+id/checkbox_background"
|
2020-09-17 11:23:27 +00:00
|
|
|
android:layout_width="24dp"
|
|
|
|
|
android:layout_height="24dp"
|
|
|
|
|
android:gravity="center"
|
|
|
|
|
android:layout_gravity="center" />
|
|
|
|
|
<ImageView
|
|
|
|
|
android:id="@+id/checkmark"
|
|
|
|
|
android:layout_width="24dp"
|
|
|
|
|
android:layout_height="24dp"
|
2017-09-25 15:34:56 +00:00
|
|
|
android:layout_gravity="center"
|
2020-09-17 11:23:27 +00:00
|
|
|
android:scaleType="center"
|
|
|
|
|
android:src="@drawable/checkmark" />
|
2017-09-25 15:34:56 +00:00
|
|
|
</FrameLayout>
|
2021-02-23 10:49:59 +00:00
|
|
|
<TextView
|
2017-09-25 15:34:56 +00:00
|
|
|
android:id="@+id/text_view"
|
2018-07-27 16:46:32 +00:00
|
|
|
style="@style/Subheader3"
|
2017-09-25 15:34:56 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
2020-09-04 16:17:34 +00:00
|
|
|
android:layout_margin="12dp"
|
|
|
|
|
tools:text="Title"/>
|
2017-09-25 15:34:56 +00:00
|
|
|
</LinearLayout>
|
|
|
|
|
<LinearLayout
|
2017-10-07 16:55:13 +00:00
|
|
|
android:id="@+id/checklistView"
|
2017-06-21 17:34:53 +00:00
|
|
|
android:layout_width="match_parent"
|
2017-06-22 16:32:13 +00:00
|
|
|
android:layout_height="wrap_content"
|
2017-09-25 15:34:56 +00:00
|
|
|
android:orientation="vertical"/>
|
2017-06-21 17:34:53 +00:00
|
|
|
</LinearLayout>
|