2017-06-21 17:34:53 +00: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="wrap_content"
|
|
|
|
|
android:minHeight="60dp"
|
2017-06-22 16:32:13 +00:00
|
|
|
android:elevation="2dp"
|
|
|
|
|
android:layout_margin="4dp"
|
2017-09-25 15:34:56 +00:00
|
|
|
android:background="@drawable/layout_rounded_bg"
|
|
|
|
|
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"
|
|
|
|
|
android:layout_height="match_parent">
|
2017-06-21 17:34:53 +00:00
|
|
|
|
2017-09-25 15:34:56 +00:00
|
|
|
<View
|
|
|
|
|
android:layout_width="1dp"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:layout_gravity="end"
|
|
|
|
|
android:layout_marginBottom="1dp"
|
|
|
|
|
android:background="@color/task_border_gray" />
|
2017-06-21 17:34:53 +00:00
|
|
|
|
2017-09-25 15:34:56 +00:00
|
|
|
<CheckBox
|
|
|
|
|
android:id="@+id/checkBox"
|
|
|
|
|
android:layout_width="@dimen/checkbox_size"
|
|
|
|
|
android:layout_height="@dimen/checkbox_size"
|
|
|
|
|
android:layout_gravity="center"
|
|
|
|
|
android:button="@drawable/daily_checkbox"
|
|
|
|
|
android:gravity="center" />
|
|
|
|
|
</FrameLayout>
|
2018-07-27 16:46:32 +00:00
|
|
|
<net.pherth.android.emoji_library.EmojiTextView
|
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"
|
|
|
|
|
android:layout_margin="12dp" />
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
<View
|
|
|
|
|
android:id="@+id/checklistDivider"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="1dp"
|
2017-09-25 18:18:06 +00:00
|
|
|
android:background="@color/gray_500"
|
|
|
|
|
android:visibility="gone"/>
|
2017-09-25 15:34:56 +00:00
|
|
|
<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>
|