85 lines
3.8 KiB
XML
85 lines
3.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:gravity="center"
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
<androidx.cardview.widget.CardView
|
|
android:gravity="center"
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
app:cardCornerRadius="10dp">
|
|
<LinearLayout
|
|
android:layout_gravity="center"
|
|
android:orientation="vertical"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:minWidth="320dp"
|
|
android:minHeight="130dp">
|
|
<TextView
|
|
android:textSize="@dimen/title_size"
|
|
android:textColor="@android:color/black"
|
|
android:layout_gravity="center"
|
|
android:id="@+id/simple_question_dialog_title"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="18dp"
|
|
android:layout_marginBottom="10dp"/>
|
|
<ScrollView
|
|
android:scrollbars="none"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1">
|
|
<TextView
|
|
android:textSize="@dimen/txt_size_small"
|
|
android:textColor="@android:color/darker_gray"
|
|
android:gravity="center"
|
|
android:id="@+id/simple_question_dialog_info"
|
|
android:paddingLeft="46dp"
|
|
android:paddingRight="46dp"
|
|
android:scrollbars="none"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingStart="46dp"
|
|
android:paddingEnd="46dp"/>
|
|
</ScrollView>
|
|
<TextView
|
|
android:background="#aaaaaa"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1px"/>
|
|
<LinearLayout
|
|
android:orientation="horizontal"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
<TextView
|
|
android:textSize="@dimen/txt_size_large"
|
|
android:textColor="@drawable/selector_txt_states"
|
|
android:gravity="center"
|
|
android:id="@+id/simple_question_dialog_cancel"
|
|
android:layout_width="0dp"
|
|
android:layout_height="48dp"
|
|
android:text="@string/cancel"
|
|
android:layout_weight="1"/>
|
|
<TextView
|
|
android:background="#aaaaaa"
|
|
android:layout_width="1px"
|
|
android:layout_height="match_parent"/>
|
|
<TextView
|
|
android:textSize="@dimen/txt_size_large"
|
|
android:textColor="@drawable/selector_txt_states"
|
|
android:gravity="center"
|
|
android:id="@+id/simple_question_dialog_ok"
|
|
android:layout_width="0dp"
|
|
android:layout_height="48dp"
|
|
android:layout_marginLeft="10dp"
|
|
android:layout_marginRight="5dp"
|
|
android:text="@string/confirm"
|
|
android:layout_weight="1"
|
|
android:layout_marginStart="10dp"
|
|
android:layout_marginEnd="5dp"/>
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
</androidx.cardview.widget.CardView>
|
|
</ScrollView>
|