66 lines
2.9 KiB
XML
66 lines
2.9 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="wrap_content"
|
|
app:cardCornerRadius="@dimen/dialog_border_radius">
|
|
<RelativeLayout
|
|
android:background="@color/bg_white"
|
|
android:paddingLeft="@dimen/theme_dialog_hori_padding"
|
|
android:paddingTop="@dimen/dp_20"
|
|
android:paddingRight="@dimen/theme_dialog_hori_padding"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
<TextView
|
|
android:textSize="@dimen/theme_16sp"
|
|
android:textColor="@color/theme_txt"
|
|
android:gravity="left"
|
|
android:id="@+id/content"
|
|
android:scrollbars="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:maxHeight="@dimen/common_160dp"
|
|
android:lineSpacingExtra="@dimen/dp_5"/>
|
|
<LinearLayout
|
|
android:gravity="center_vertical"
|
|
android:orientation="horizontal"
|
|
android:id="@+id/cb_ll"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="@dimen/dp4"
|
|
android:layout_below="@+id/content">
|
|
<CheckBox
|
|
android:id="@+id/checkbox_agree"
|
|
android:layout_width="@dimen/dp_25"
|
|
android:layout_height="@dimen/dp_25"
|
|
style="@style/xBaseCheckBoxStyle"/>
|
|
<TextView
|
|
android:textSize="@dimen/sp_14"
|
|
android:textColor="@color/bg_92A7B6"
|
|
android:id="@+id/tips"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"/>
|
|
</LinearLayout>
|
|
<LinearLayout
|
|
android:gravity="center"
|
|
android:layout_gravity="center"
|
|
android:orientation="horizontal"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="@dimen/common_14dp"
|
|
android:layout_marginBottom="@dimen/comm_simple_dialog_padding_bottom"
|
|
android:layout_below="@+id/cb_ll"
|
|
android:layout_centerHorizontal="true">
|
|
<com.ubtech.view.widget.UButton
|
|
android:id="@+id/btnCancel"
|
|
android:layout_height="@dimen/common_60dp"
|
|
android:text="@string/cancel"
|
|
style="@style/btn_blue_small_style"/>
|
|
<com.ubtech.view.widget.UButton
|
|
android:id="@+id/btnOk"
|
|
android:layout_height="@dimen/common_60dp"
|
|
android:text="@string/ok"
|
|
style="@style/btn_blue_small_style"/>
|
|
</LinearLayout>
|
|
</RelativeLayout>
|
|
</androidx.cardview.widget.CardView>
|