<?xml version="1.0" encoding="utf-8"?>
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
<TextView
|
android:layout_width="140dp"
|
android:layout_height="wrap_content"
|
app:layout_constraintBaseline_toBaselineOf="@id/tv_ok"
|
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintEnd_toStartOf="@id/tv_ok"
|
android:id="@+id/tv_cancel"
|
android:gravity="center"
|
android:paddingVertical="10dp"
|
android:textSize="14sp"
|
android:textColor="@color/textGreen"
|
android:background="@drawable/bg_green_line_22dp"
|
android:text="我再想想"/>
|
|
<TextView
|
android:layout_width="140dp"
|
android:layout_height="wrap_content"
|
app:layout_constraintBottom_toBottomOf="parent"
|
app:layout_constraintStart_toEndOf="@id/tv_cancel"
|
app:layout_constraintEnd_toEndOf="parent"
|
android:layout_marginBottom="14dp"
|
android:id="@+id/tv_ok"
|
android:paddingVertical="10dp"
|
android:textStyle="bold"
|
android:textSize="14sp"
|
android:background="@drawable/bg_btn_enable"
|
android:textColor="@color/white"
|
android:gravity="center"
|
android:text="确认注销"/>
|
<TextView
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginStart="15dp"
|
android:layout_marginEnd="13dp"
|
android:layout_marginTop="10dp"
|
app:layout_constraintTop_toTopOf="parent"
|
android:textStyle="bold"
|
android:id="@+id/tv_1"
|
android:textSize="16sp"
|
android:text="请认真阅读并理解,注销账号将产生以下后果:"/>
|
<TextView
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginStart="15dp"
|
android:layout_marginEnd="13dp"
|
android:textStyle="bold"
|
android:textSize="13sp"
|
android:layout_marginTop="10dp"
|
app:layout_constraintTop_toBottomOf="@id/tv_1"
|
android:text="1、账号信息、第三方授权、认证身份将被清空和取消; \n2、所有使用、收藏、关注列表和购买记录将被清空;\n 3、账户中所有的余额将被清空;\n 4、账户对应的会员身份与权益将被取消;\n 5、您在平台发布的内容将做匿名处理。 \n\n一经确认,以上内容将无法恢复,请谨慎考虑后决定。 \n\n根据相关法律法规,注销泉疗愈账号并不代表注销前 的账号行为和相关责任得到豁免或减轻。 \n\n "/>
|
</androidx.constraintlayout.widget.ConstraintLayout>
|