habitica-android/Habitica/res/layout/checklist_item_row.xml

30 lines
1.3 KiB
XML
Raw Normal View History

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"
2015-08-31 15:48:56 +00:00
android:layout_height="wrap_content">
<LinearLayout
android:orientation="horizontal" android:layout_width="match_parent"
android:layout_height="fill_parent"
android:minHeight="@dimen/checklist_item_min_height">
<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"
android:layout_height="match_parent">
2015-08-31 15:48:56 +00:00
<CheckBox
android:id="@+id/checkBox"
2015-11-07 18:10:03 +00:00
android:layout_width="@dimen/checkbox_size"
android:layout_height="@dimen/checkbox_size"
android:gravity="center"
2017-01-20 11:41:05 +00:00
android:button="@drawable/checklist_checkbox"
android:layout_gravity="center" />
</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>