2015-08-31 15:48:56 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
android:orientation="vertical" android:layout_width="match_parent"
|
|
|
|
|
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">
|
2015-11-07 18:10:03 +00:00
|
|
|
<RelativeLayout
|
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:layout_centerInParent="true"
|
|
|
|
|
android:gravity="center"
|
2017-01-20 11:41:05 +00:00
|
|
|
android:button="@drawable/checklist_checkbox"
|
2015-11-07 18:10:03 +00:00
|
|
|
android:layout_gravity="center_horizontal" />
|
|
|
|
|
</RelativeLayout>
|
2016-06-21 09:28:51 +00:00
|
|
|
<net.pherth.android.emoji_library.EmojiTextView
|
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"
|
2015-12-02 17:46:27 +00:00
|
|
|
android:paddingLeft="16dp"
|
2017-01-13 16:42:05 +00:00
|
|
|
android:layout_gravity="center_vertical"/>
|
2015-08-31 15:48:56 +00:00
|
|
|
</LinearLayout>
|
|
|
|
|
<View
|
|
|
|
|
android:id="@+id/bottomBorderView"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="@dimen/hairline_height"
|
|
|
|
|
android:background="@color/cell_separator"/>
|
|
|
|
|
</LinearLayout>
|