35 lines
1.3 KiB
XML
35 lines
1.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="@dimen/dp_12"
|
|
android:background="@drawable/bg_r16_fff"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:id="@+id/tv_title"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="@dimen/dp_16"
|
|
android:layout_marginTop="@dimen/dp_12"
|
|
android:layout_marginEnd="@dimen/dp_16"
|
|
android:textColor="@color/color_FF333333"
|
|
android:textSize="@dimen/sp_16" />
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/rv_task_list"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="@dimen/dp_12"
|
|
android:nestedScrollingEnabled="false"
|
|
android:paddingStart="@dimen/dp_16"
|
|
android:paddingEnd="@dimen/dp_16" />
|
|
|
|
<View
|
|
android:id="@+id/v"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/dp_100"
|
|
android:visibility="gone"
|
|
android:background="@color/color_transparent" />
|
|
</LinearLayout>
|