|
@@ -0,0 +1,100 @@
|
|
|
|
+<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
+<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
+ app:layout_constraintTop_toTopOf="parent"
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
+ xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
+ xmlns:tools="http://schemas.android.com/tools">
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ <androidx.constraintlayout.widget.ConstraintLayout
|
|
|
|
+ android:background="@drawable/shape_white_20"
|
|
|
|
+ app:layout_constraintTop_toTopOf="parent"
|
|
|
|
+ android:layout_marginStart="40dp"
|
|
|
|
+ android:layout_marginEnd="40dp"
|
|
|
|
+ android:paddingBottom="30dp"
|
|
|
|
+ android:layout_marginTop="@dimen/dp_40"
|
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
+ android:layout_height="wrap_content">
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ <TextView
|
|
|
|
+ android:id="@+id/tv_close_title"
|
|
|
|
+ android:text="Account has been banned"
|
|
|
|
+ android:textColor="#0F172A"
|
|
|
|
+ android:textSize="18sp"
|
|
|
|
+ android:textStyle="bold"
|
|
|
|
+ android:layout_width="wrap_content"
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
|
+ app:layout_constraintTop_toTopOf="parent"
|
|
|
|
+ android:layout_marginTop="30dp"/>
|
|
|
|
+
|
|
|
|
+ <TextView
|
|
|
|
+ android:id="@+id/tv_hint"
|
|
|
|
+ android:text="Please contact customer service if you have any questions."
|
|
|
|
+ android:textColor="#0F172A"
|
|
|
|
+ android:textSize="14sp"
|
|
|
|
+ android:layout_width="wrap_content"
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
|
+ android:layout_marginTop="16dp"
|
|
|
|
+ android:gravity="center"
|
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/tv_close_title"/>
|
|
|
|
+
|
|
|
|
+ <TextView
|
|
|
|
+ android:id="@+id/tv_time"
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
+ android:layout_marginStart="32dp"
|
|
|
|
+ android:layout_marginEnd="32dp"
|
|
|
|
+ android:layout_marginTop="16dp"
|
|
|
|
+ android:textSize="@dimen/sp_14"
|
|
|
|
+ android:text="The live will be closed after 5s."
|
|
|
|
+ android:textColor="#DC2626"
|
|
|
|
+ android:gravity="center"
|
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/tv_hint"/>
|
|
|
|
+
|
|
|
|
+ <TextView
|
|
|
|
+ android:id="@+id/tv_setting"
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
+ android:layout_height="50dp"
|
|
|
|
+ android:layout_marginTop="20dp"
|
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/tv_time"
|
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
+ android:layout_marginEnd="20dp"
|
|
|
|
+ android:textColor="#fff"
|
|
|
|
+ android:textSize="@dimen/sp_16"
|
|
|
|
+ android:text="Close the Live"
|
|
|
|
+ android:gravity="center"
|
|
|
|
+ android:layout_marginBottom="30dp"
|
|
|
|
+ android:layout_marginStart="30dp"
|
|
|
|
+ android:background="@drawable/shape_9b20fc_20"/>
|
|
|
|
+
|
|
|
|
+ </androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
|
+
|
|
|
|
+ <ImageView
|
|
|
|
+ android:id="@+id/iv_bg"
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
+ android:layout_height="match_parent"
|
|
|
|
+ android:background="@mipmap/bg_close_live"
|
|
|
|
+ android:layout_marginStart="40dp"
|
|
|
|
+ android:layout_marginEnd="40dp"
|
|
|
|
+ android:layout_marginTop="@dimen/dp_40"
|
|
|
|
+
|
|
|
|
+ app:layout_constraintTop_toTopOf="parent"/>
|
|
|
|
+
|
|
|
|
+ <ImageView
|
|
|
|
+ android:layout_width="80dp"
|
|
|
|
+ android:layout_height="80dp"
|
|
|
|
+ android:src="@mipmap/ic_close_live"
|
|
|
|
+ app:layout_constraintTop_toTopOf="parent"
|
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"/>
|
|
|
|
+
|
|
|
|
+</androidx.constraintlayout.widget.ConstraintLayout>
|