93 lines
3.4 KiB
XML
93 lines
3.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.constraintlayout.widget.ConstraintLayout 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="match_parent"
|
|
|
|
android:gravity="center"
|
|
android:orientation="vertical"
|
|
|
|
>
|
|
|
|
<LinearLayout
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:background="@drawable/activity_bg"
|
|
android:gravity="center"
|
|
android:orientation="vertical"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
app:layout_constraintRight_toRightOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
app:layout_constraintWidth_percent="0.8"
|
|
tools:ignore="MissingConstraints">
|
|
|
|
<TextView
|
|
android:id="@+id/tv_title"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="20dp"
|
|
android:layout_marginBottom="10dp"
|
|
android:gravity="center"
|
|
android:text="用户协议与隐私政策说明"
|
|
android:textColor="@color/blue_4072FE"
|
|
android:textSize="16sp"
|
|
android:textStyle="bold" />
|
|
|
|
|
|
<LinearLayout
|
|
android:id="@+id/rg_pay_type"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="15dp"
|
|
android:layout_marginLeft="10dp"
|
|
android:layout_marginRight="10dp"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:id="@+id/dialog_agreement_info"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content">
|
|
|
|
</TextView>
|
|
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_margin="15dp"
|
|
android:layout_height="wrap_content">
|
|
<TextView
|
|
android:id="@+id/but_cancel"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:background="@drawable/activity_close_bg"
|
|
android:layout_weight="1"
|
|
android:gravity="center"
|
|
android:paddingTop="5dp"
|
|
android:textSize="12sp"
|
|
|
|
android:layout_marginStart="@dimen/dp_15"
|
|
android:layout_marginEnd="@dimen/dp_15"
|
|
android:paddingBottom="5dp"
|
|
android:text="@string/disagree">
|
|
</TextView>
|
|
<TextView
|
|
|
|
android:id="@+id/but_agree"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:background="@drawable/activity_jump_bg"
|
|
android:textSize="14sp"
|
|
android:layout_weight="1"
|
|
android:textStyle="bold"
|
|
android:gravity="center"
|
|
android:text="@string/agree"
|
|
android:paddingTop="5dp"
|
|
android:paddingBottom="5dp">
|
|
</TextView>
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|