71 lines
2.6 KiB
XML
71 lines
2.6 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"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="@dimen/dp_16"
|
|
android:background="@color/white"
|
|
android:elevation="@dimen/dp_5"
|
|
|
|
app:cardCornerRadius="@dimen/dp_10">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center_horizontal"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:layout_marginTop="@dimen/dp_10"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="提示"
|
|
android:textStyle="bold"
|
|
android:textColor="@color/black"
|
|
android:textSize="@dimen/sp_20"></TextView>
|
|
|
|
<TextView
|
|
android:paddingLeft="@dimen/dp_10"
|
|
android:paddingRight="@dimen/dp_10"
|
|
android:lineSpacingExtra="@dimen/dp_6"
|
|
android:gravity="center"
|
|
android:id="@+id/tvContent"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="@dimen/dp_14"
|
|
android:textColor="#333"
|
|
android:textSize="@dimen/sp_14"
|
|
tools:text="提示"></TextView>
|
|
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="@dimen/dp_10"
|
|
android:orientation="horizontal"
|
|
android:paddingTop="@dimen/dp_10"
|
|
android:paddingBottom="@dimen/dp_10">
|
|
|
|
<TextView
|
|
android:id="@+id/tvCancel"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:gravity="center"
|
|
android:text="取消"
|
|
android:textSize="@dimen/sp_16"></TextView>
|
|
|
|
<TextView
|
|
android:id="@+id/tvOk"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:gravity="center"
|
|
android:text="去注册"
|
|
android:textColor="@color/colorPrimary"
|
|
android:textSize="@dimen/sp_16"></TextView>
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
</androidx.cardview.widget.CardView> |