2017-01-06 22:45:21 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:orientation="vertical">
|
2018-07-23 16:03:58 +00:00
|
|
|
<LinearLayout
|
2017-01-06 22:45:21 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
2018-07-23 16:03:58 +00:00
|
|
|
android:gravity="center_vertical"
|
2020-09-17 11:47:02 +00:00
|
|
|
android:layout_marginStart="@dimen/spacing_large"
|
2018-07-23 16:03:58 +00:00
|
|
|
android:layout_marginTop="24dp"
|
|
|
|
|
android:layout_marginBottom="@dimen/spacing_large"
|
|
|
|
|
>
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/task_group_name"
|
|
|
|
|
style="@style/Body1"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
tools:text="Habits"
|
|
|
|
|
android:textSize="15sp"/>
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/task_count_view"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
2020-09-17 11:47:02 +00:00
|
|
|
android:layout_marginStart="@dimen/spacing_medium"
|
2020-09-04 16:17:34 +00:00
|
|
|
style="@style/Pill.Content"
|
|
|
|
|
android:textColor="@color/text_dimmed"
|
2018-07-23 16:03:58 +00:00
|
|
|
tools:text="2"/>
|
|
|
|
|
</LinearLayout>
|
2017-01-06 22:45:21 +00:00
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:id="@+id/tasks_layout"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:background="@drawable/border_1f000000"
|
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
</LinearLayout>
|