66 lines
2.6 KiB
XML
66 lines
2.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@null"
|
|
android:orientation="vertical"
|
|
tools:viewBindingIgnore="true">
|
|
|
|
<LinearLayout
|
|
android:id="@+id/selector_layout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="60dp"
|
|
android:background="@drawable/shape_recommend_bg"
|
|
android:orientation="vertical"
|
|
android:padding="20dp">
|
|
|
|
<TextView
|
|
android:id="@+id/tv_dialog_tips_title"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_horizontal"
|
|
android:layout_marginTop="8dp"
|
|
android:text="您确定要挂断吗?"
|
|
android:textColor="@color/one_text"
|
|
android:textSize="18dp"
|
|
android:textStyle="bold" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="26dp"
|
|
android:gravity="center"
|
|
android:orientation="horizontal">
|
|
|
|
<com.flyco.roundview.RoundTextView
|
|
android:id="@+id/tv_dialog_tips_sure"
|
|
android:layout_width="86dp"
|
|
android:layout_height="38dp"
|
|
android:layout_gravity="center_horizontal"
|
|
android:layout_marginEnd="6dp"
|
|
android:gravity="center"
|
|
android:text="挂断"
|
|
android:textColor="@color/three_text"
|
|
android:textSize="16dp"
|
|
app:rv_cornerRadius="44dp"
|
|
app:rv_strokeColor="#E9E9E9"
|
|
app:rv_strokeWidth="1dp" />
|
|
|
|
<com.flyco.roundview.RoundTextView
|
|
android:id="@+id/tv_dialog_tips_cancel"
|
|
android:layout_width="86dp"
|
|
android:layout_height="38dp"
|
|
android:layout_gravity="center_horizontal"
|
|
android:layout_marginStart="6dp"
|
|
android:gravity="center"
|
|
android:text="取消"
|
|
android:textColor="@color/white"
|
|
android:textSize="16dp"
|
|
app:rv_backgroundColor="#C178FE"
|
|
app:rv_cornerRadius="44dp" />
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
</LinearLayout> |