<?xml version="1.0" encoding="utf-8"?>
|
<RelativeLayout
|
xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent"
|
android:layout_height="match_parent">
|
|
<RelativeLayout
|
android:layout_marginStart="12dp"
|
android:layout_marginEnd="12dp"
|
android:layout_marginBottom="20dp"
|
android:background="@drawable/bg_dialog_sex"
|
android:layout_alignParentBottom="true"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content">
|
|
<TextView
|
android:id="@+id/tv_cancel_server_mode"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="取消"
|
android:paddingTop="20dp"
|
android:paddingStart="17dp"
|
android:paddingBottom="10dp"
|
android:paddingEnd="20dp"
|
android:textColor="#ff666666"
|
android:textSize="14sp"
|
/>
|
|
<TextView
|
android:id="@+id/tv_ok_server_mode"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="确认"
|
android:layout_alignParentEnd="true"
|
android:paddingTop="20dp"
|
android:paddingStart="20dp"
|
android:paddingBottom="10dp"
|
android:paddingEnd="17dp"
|
android:textColor="@color/main_yellow_shen"
|
android:textSize="14sp"
|
/>
|
|
<androidx.recyclerview.widget.RecyclerView
|
android:id="@+id/rl_server_mode"
|
android:layout_below="@+id/tv_ok_server_mode"
|
android:layout_width="match_parent"
|
android:layout_marginBottom="10dp"
|
android:layout_height="wrap_content"/>
|
|
|
|
|
</RelativeLayout>
|
|
</RelativeLayout>
|