63 lines
2.1 KiB
XML
Executable File
63 lines
2.1 KiB
XML
Executable File
<?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_margin="20dp"
|
|
android:background="@drawable/shp_rectangle_white"
|
|
android:orientation="vertical">
|
|
|
|
<com.tenlionsoft.baselib.core.widget.views.TypeFaceTextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:padding="8dp"
|
|
android:text="人员选择:"
|
|
android:textColor="@color/black"
|
|
android:textSize="18dp" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1"
|
|
android:orientation="vertical">
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/rlv_users"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:paddingLeft="20dp"
|
|
android:paddingRight="20dp" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="10dp"
|
|
android:gravity="right"
|
|
android:orientation="horizontal">
|
|
|
|
<Button
|
|
android:id="@+id/btn_cancel"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:background="@null"
|
|
android:minWidth="0dp"
|
|
android:minHeight="0dp"
|
|
android:padding="10dp"
|
|
android:text="取消"
|
|
android:textColor="@color/gray_text" />
|
|
|
|
<Button
|
|
android:id="@+id/btn_confirm"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="10dp"
|
|
android:background="@null"
|
|
android:minWidth="0dp"
|
|
android:minHeight="0dp"
|
|
android:padding="10dp"
|
|
android:text="确定"
|
|
android:textColor="@color/text_blue" />
|
|
</LinearLayout>
|
|
</LinearLayout> |