71 lines
3.0 KiB
XML
71 lines
3.0 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="match_parent"
|
|
android:layout_height="match_parent"
|
|
app:cardCornerRadius="10dp">
|
|
<LinearLayout
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
<TextView
|
|
android:textSize="@dimen/txt_title_1"
|
|
android:textStyle="bold"
|
|
android:textColor="@android:color/black"
|
|
android:gravity="center"
|
|
android:id="@+id/tvDialogTitle"
|
|
android:visibility="gone"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/action_bar_height"/>
|
|
<LinearLayout
|
|
android:gravity="center"
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1">
|
|
<ImageView
|
|
android:id="@+id/imgLogo"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"/>
|
|
<TextView
|
|
android:textSize="@dimen/txt_content_1"
|
|
android:textColor="@color/txt_22303F"
|
|
android:id="@+id/tvTips"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"/>
|
|
</LinearLayout>
|
|
<LinearLayout
|
|
android:gravity="center"
|
|
android:orientation="horizontal"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="5dp"
|
|
android:layout_marginBottom="@dimen/dialog_btn_margin">
|
|
<Button
|
|
android:textSize="@dimen/txt_content_1"
|
|
android:textColor="@android:color/white"
|
|
android:ellipsize="end"
|
|
android:id="@+id/btnCancel"
|
|
android:background="@drawable/sel_common_btn"
|
|
android:layout_width="@dimen/dialog_btn_width"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginRight="28dp"
|
|
android:lines="1"
|
|
android:singleLine="true"
|
|
android:textAllCaps="false"
|
|
android:textAlignment="center"/>
|
|
<Button
|
|
android:textSize="@dimen/txt_content_1"
|
|
android:textColor="@android:color/white"
|
|
android:ellipsize="end"
|
|
android:id="@+id/btnOk"
|
|
android:background="@drawable/sel_common_btn"
|
|
android:layout_width="@dimen/dialog_btn_width"
|
|
android:layout_height="wrap_content"
|
|
android:lines="1"
|
|
android:singleLine="true"
|
|
android:textAllCaps="false"
|
|
android:textAlignment="center"/>
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
</androidx.cardview.widget.CardView>
|