205 lines
9.8 KiB
XML
205 lines
9.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<com.ck.ckcollar.app.widget.CKLinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical"
|
|
android:background="@color/backgroundColor"
|
|
>
|
|
|
|
<include layout="@layout/action_bar"></include>
|
|
|
|
|
|
<com.ck.ckcollar.app.widget.CKLinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical"
|
|
android:padding="20dp"
|
|
>
|
|
<androidx.core.widget.NestedScrollView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="1"
|
|
>
|
|
<com.ck.ckcollar.app.widget.CKLinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
<!-- 警告图标 -->
|
|
<com.ck.ckcollar.app.widget.CKImageView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:src="@mipmap/image_alert"
|
|
android:layout_gravity="center_horizontal"
|
|
android:layout_marginBottom="30dp" />
|
|
|
|
<!-- 注销提示 -->
|
|
<com.ck.ckcollar.app.widget.CKTextView
|
|
android:id="@+id/textPhone"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="注销绑定的账号"
|
|
android:textSize="18sp"
|
|
android:textColor="@color/textColor"
|
|
android:textStyle="bold"
|
|
android:layout_gravity="center_horizontal"
|
|
android:layout_marginBottom="30dp" />
|
|
|
|
<!-- 注销事项标题 -->
|
|
<com.ck.ckcollar.app.widget.CKTextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="申请注销的关联事项:"
|
|
android:textSize="14sp"
|
|
android:textColor="@color/color_666666"
|
|
android:layout_marginBottom="14dp" />
|
|
|
|
<!-- 注销事项列表 -->
|
|
<com.ck.ckcollar.app.widget.CKLinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:layout_marginBottom="40dp">
|
|
|
|
<!-- 事项1 -->
|
|
<com.ck.ckcollar.app.widget.CKLinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:layout_marginBottom="20dp">
|
|
|
|
<com.ck.ckcollar.app.widget.CKTextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="1. 账号处于安全状态"
|
|
android:textSize="14sp"
|
|
android:textColor="@color/textColor"
|
|
android:textStyle="bold"
|
|
android:layout_marginBottom="8dp" />
|
|
|
|
<com.ck.ckcollar.app.widget.CKTextView
|
|
android:id="@+id/textAlert1"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="账号当前为正常使用状态, 不存在被盗、违规、禁用等风险"
|
|
android:textSize="14sp"
|
|
android:textColor="@color/color_666666" />
|
|
</com.ck.ckcollar.app.widget.CKLinearLayout>
|
|
|
|
<!-- 事项2 -->
|
|
<com.ck.ckcollar.app.widget.CKLinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:layout_marginBottom="20dp">
|
|
|
|
<com.ck.ckcollar.app.widget.CKTextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="2. 账号下的订单已完成"
|
|
android:textSize="14sp"
|
|
android:textColor="@color/textColor"
|
|
android:textStyle="bold"
|
|
android:layout_marginBottom="8dp" />
|
|
|
|
<com.ck.ckcollar.app.widget.CKTextView
|
|
android:id="@+id/textAlert2"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="当前账号下的交易均已完成, 不存在订单纠纷"
|
|
android:textSize="14sp"
|
|
android:textColor="@color/color_666666" />
|
|
</com.ck.ckcollar.app.widget.CKLinearLayout>
|
|
|
|
<!-- 事项3 -->
|
|
<com.ck.ckcollar.app.widget.CKLinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:layout_marginBottom="20dp">
|
|
|
|
<com.ck.ckcollar.app.widget.CKTextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="3. 账号资产已结清"
|
|
android:textSize="14sp"
|
|
android:textColor="@color/textColor"
|
|
android:textStyle="bold"
|
|
android:layout_marginBottom="8dp" />
|
|
|
|
<com.ck.ckcollar.app.widget.CKTextView
|
|
android:id="@+id/textAlert3"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="账号下的积分、会员、优惠券、红包等, 均已结清、清空或自愿放弃"
|
|
android:textSize="14sp"
|
|
android:textColor="@color/color_666666" />
|
|
</com.ck.ckcollar.app.widget.CKLinearLayout>
|
|
|
|
<!-- 事项4 -->
|
|
<com.ck.ckcollar.app.widget.CKLinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
<com.ck.ckcollar.app.widget.CKTextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="4. 账号授权、绑定关系已解除"
|
|
android:textSize="14sp"
|
|
android:textColor="@color/textColor"
|
|
android:textStyle="bold"
|
|
android:layout_marginBottom="8dp" />
|
|
|
|
<com.ck.ckcollar.app.widget.CKTextView
|
|
android:id="@+id/textAlert4"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="账号已解除与其他第三方平台的授权, 已解绑银行卡等"
|
|
android:textSize="14sp"
|
|
android:textColor="@color/color_666666" />
|
|
</com.ck.ckcollar.app.widget.CKLinearLayout>
|
|
</com.ck.ckcollar.app.widget.CKLinearLayout>
|
|
|
|
|
|
</com.ck.ckcollar.app.widget.CKLinearLayout>
|
|
</androidx.core.widget.NestedScrollView>
|
|
|
|
<!-- 同意勾选 -->
|
|
<com.ck.ckcollar.app.widget.CKLinearLayout
|
|
android:id="@+id/btnCheck"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:gravity="center_vertical"
|
|
android:layout_marginBottom="20dp">
|
|
|
|
<com.ck.ckcollar.app.widget.CKImageView
|
|
android:id="@+id/check"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:src="@mipmap/image_check_unselect"
|
|
android:layout_marginRight="3dp" />
|
|
|
|
<com.ck.ckcollar.app.widget.CKTextView
|
|
android:id="@+id/textAgreement"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="我已阅读并同意《用户注销须知》"
|
|
android:textSize="12sp"
|
|
android:textColor="@color/textColor" />
|
|
</com.ck.ckcollar.app.widget.CKLinearLayout>
|
|
|
|
<!-- 确认注销按钮 -->
|
|
<com.ck.ckcollar.app.widget.CKButton
|
|
android:id="@+id/btnConfirmCancellation"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="40dp"
|
|
android:text="@string/confirm_account_cancellation"
|
|
android:textSize="14sp"
|
|
android:textColor="@color/textColor"
|
|
android:background="@drawable/bg_login_button"
|
|
android:layout_marginBottom="20dp" />
|
|
</com.ck.ckcollar.app.widget.CKLinearLayout>
|
|
|
|
|
|
</com.ck.ckcollar.app.widget.CKLinearLayout> |