50 lines
1.8 KiB
XML
50 lines
1.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.cardview.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="400dp"
|
|
android:layout_height="300dp"
|
|
app:cardCornerRadius="10dp"
|
|
app:cardElevation="0dp"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
app:cardBackgroundColor="@color/white">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginVertical="30dp"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:id="@+id/tvDialogTitle"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_horizontal"
|
|
android:textColor="@color/black"
|
|
android:textSize="22sp"
|
|
tools:text="标题"/>
|
|
|
|
<TextView
|
|
android:id="@+id/tvDialogContent"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1"
|
|
android:layout_gravity="center_horizontal"
|
|
android:textColor="@color/black"
|
|
android:gravity="center"
|
|
android:layout_marginHorizontal="50dp"
|
|
android:textSize="16sp"
|
|
tools:text="内容"/>
|
|
|
|
<androidx.appcompat.widget.AppCompatButton
|
|
android:id="@+id/btnConfirm"
|
|
android:layout_width="120dp"
|
|
android:layout_height="50dp"
|
|
android:text="确定"
|
|
android:background="@color/bg_card_blue"
|
|
android:textColor="@color/white"
|
|
android:textSize="20sp"
|
|
android:layout_gravity="center_horizontal"/>
|
|
|
|
</LinearLayout>
|
|
|
|
</androidx.cardview.widget.CardView> |