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
|
|
|
|
|
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"
|
|
|
|
|
android:button="@drawable/daily_checkbox"
|
|
|
|
|
android:layout_gravity="center_horizontal" />
|
|
|
|
|
</RelativeLayout>
|
2015-08-31 15:48:56 +00:00
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/checkedTextView"
|
|
|
|
|
style="@style/CardTitle"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:padding="5dp"
|
|
|
|
|
/>
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
<View
|
|
|
|
|
android:id="@+id/bottomBorderView"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="@dimen/hairline_height"
|
|
|
|
|
android:background="@color/cell_separator"/>
|
|
|
|
|
</LinearLayout>
|