2023-09-21 17:58:53 +08:00
|
|
|
<?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_marginStart="10dp"
|
|
|
|
android:layout_marginTop="8dp"
|
|
|
|
android:layout_marginEnd="10dp"
|
|
|
|
android:background="@drawable/bg_drawer_popup"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="10dp"
|
|
|
|
android:layout_marginTop="10dp"
|
|
|
|
android:layout_marginEnd="10dp">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/send_good_gift"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="任務中心"
|
|
|
|
android:textColor="#F6F7FB"
|
|
|
|
android:textSize="14sp" />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</FrameLayout>
|
|
|
|
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
|
|
android:id="@+id/child_list"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2024-06-26 17:27:29 +08:00
|
|
|
android:layout_marginLeft="20dp"
|
2023-09-21 17:58:53 +08:00
|
|
|
android:layout_marginBottom="16dp" />
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/select_more_layout"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:padding="14dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
android:gravity="center_vertical">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/select_more"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center_horizontal"
|
|
|
|
android:text="@string/moer"
|
|
|
|
android:textColor="#EEF1FF"
|
|
|
|
android:textSize="12sp" />
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/select_more_icon"
|
|
|
|
android:layout_width="8dp"
|
|
|
|
android:layout_height="8dp"
|
|
|
|
android:layout_marginStart="3dp"
|
|
|
|
android:src="@mipmap/icon_more_down" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</LinearLayout>
|