57 lines
1.9 KiB
XML
57 lines
1.9 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:background="@drawable/bg_r16_tb_ffffff"
|
||
|
|
android:orientation="vertical"
|
||
|
|
android:padding="16dp">
|
||
|
|
|
||
|
|
<RelativeLayout
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_marginTop="16dp"
|
||
|
|
android:gravity="end"
|
||
|
|
android:orientation="horizontal">
|
||
|
|
|
||
|
|
<Button
|
||
|
|
android:id="@+id/btn_cancel"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_alignParentStart="true"
|
||
|
|
android:layout_centerInParent="true"
|
||
|
|
android:layout_height="36dp"
|
||
|
|
android:background="@drawable/bg_r80_hui"
|
||
|
|
android:text="取消"
|
||
|
|
android:textColor="#000" />
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/tv_title"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="40dp"
|
||
|
|
android:layout_centerInParent="true"
|
||
|
|
android:layout_gravity="center_horizontal"
|
||
|
|
android:gravity="center"
|
||
|
|
android:text="选择相册"
|
||
|
|
android:textColor="@color/black"
|
||
|
|
android:textSize="16sp" />
|
||
|
|
|
||
|
|
<Button
|
||
|
|
android:id="@+id/btn_confirm"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="36dp"
|
||
|
|
android:layout_alignParentEnd="true"
|
||
|
|
android:layout_marginStart="16dp"
|
||
|
|
android:background="@drawable/cs"
|
||
|
|
android:text="确认"
|
||
|
|
android:textColor="@color/color_FF333333" />
|
||
|
|
</RelativeLayout>
|
||
|
|
|
||
|
|
|
||
|
|
<androidx.recyclerview.widget.RecyclerView
|
||
|
|
android:id="@+id/rv_options"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_marginTop="10dp" />
|
||
|
|
|
||
|
|
|
||
|
|
</LinearLayout>
|