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"
|
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"
|
|
|
|
|
android:layout_height="match_parent">
|
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>
|
2019-02-28 15:47:24 +00:00
|
|
|
<com.habitrpg.android.habitica.ui.views.HabiticaEmojiTextView
|
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>
|
|
|
|
|
<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>
|