2016-09-13 19:03:12 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2016-09-22 11:07:06 +00:00
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2016-11-19 18:13:39 +00:00
|
|
|
android:id="@+id/widget_list_row"
|
2016-09-22 11:07:06 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content">
|
2016-11-19 18:13:39 +00:00
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
2023-01-10 22:51:38 +00:00
|
|
|
android:background="@color/content_background">
|
2016-11-19 18:13:39 +00:00
|
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
|
android:id="@+id/checkbox_background"
|
|
|
|
|
android:layout_width="@dimen/button_compact_width"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:layout_gravity="center">
|
|
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
|
android:layout_width="@dimen/checkbox_compact_size"
|
|
|
|
|
android:layout_height="@dimen/checkbox_compact_size"
|
|
|
|
|
android:layout_gravity="center"
|
|
|
|
|
android:src="@drawable/daily_unchecked" />
|
|
|
|
|
</FrameLayout>
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/dailies_text"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:paddingBottom="@dimen/task_top_bottom_compact_padding"
|
|
|
|
|
android:paddingEnd="@dimen/task_text_padding"
|
|
|
|
|
android:paddingStart="@dimen/task_text_padding"
|
|
|
|
|
android:paddingTop="@dimen/task_top_bottom_compact_padding"
|
2021-11-29 16:03:17 +00:00
|
|
|
android:textColor="@color/text_primary" />
|
2016-11-19 18:13:39 +00:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
2016-09-22 11:07:06 +00:00
|
|
|
<FrameLayout
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
2022-06-01 12:57:34 +00:00
|
|
|
android:background="@drawable/selection_highlight_brand" />
|
2016-09-22 11:07:06 +00:00
|
|
|
</FrameLayout>
|