2015-08-31 15:48:56 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-08-25 16:14:04 +00:00
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
android:layout_width="match_parent"
|
2020-08-26 15:46:39 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
xmlns:tools="http://schemas.android.com/tools">
|
2015-08-31 15:48:56 +00:00
|
|
|
<LinearLayout
|
|
|
|
|
android:orientation="horizontal" android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
|
android:minHeight="@dimen/checklist_item_min_height">
|
2017-09-25 15:34:56 +00:00
|
|
|
<FrameLayout
|
2015-12-21 23:52:24 +00:00
|
|
|
android:id="@+id/checkBoxHolder"
|
2015-11-07 18:10:03 +00:00
|
|
|
android:layout_width="@dimen/button_width"
|
2020-08-26 15:46:39 +00:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
tools:background="@color/red_10">
|
2020-09-15 07:28:34 +00:00
|
|
|
<View
|
2020-08-26 15:46:39 +00:00
|
|
|
android:id="@+id/checkBoxBackground"
|
|
|
|
|
android:layout_width="20dp"
|
|
|
|
|
android:layout_height="20dp"
|
|
|
|
|
android:gravity="center"
|
|
|
|
|
android:background="@drawable/checklist_unchecked"
|
2020-09-15 07:28:34 +00:00
|
|
|
android:layout_gravity="center" />
|
|
|
|
|
<View
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:background="@color/task_tint_overlay"/>
|
2020-08-26 15:46:39 +00:00
|
|
|
<ImageView
|
|
|
|
|
android:id="@+id/checkmark"
|
2020-09-15 07:28:34 +00:00
|
|
|
android:layout_width="20dp"
|
|
|
|
|
android:layout_height="20dp"
|
2020-08-26 15:46:39 +00:00
|
|
|
android:layout_gravity="center"
|
2020-09-15 07:28:34 +00:00
|
|
|
android:scaleType="center"
|
2020-08-26 15:46:39 +00:00
|
|
|
android:src="@drawable/checkmark" />
|
2017-09-25 15:34:56 +00:00
|
|
|
</FrameLayout>
|
2019-02-28 15:47:24 +00:00
|
|
|
<com.habitrpg.android.habitica.ui.views.HabiticaEmojiTextView
|
2015-08-31 15:48:56 +00:00
|
|
|
android:id="@+id/checkedTextView"
|
2017-01-13 16:42:05 +00:00
|
|
|
style="@style/Body2"
|
2015-08-31 15:48:56 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:padding="5dp"
|
2019-08-24 10:33:14 +00:00
|
|
|
android:paddingStart="16dp"
|
2017-01-13 16:42:05 +00:00
|
|
|
android:layout_gravity="center_vertical"/>
|
2015-08-31 15:48:56 +00:00
|
|
|
</LinearLayout>
|
2020-08-25 16:14:04 +00:00
|
|
|
</FrameLayout>
|