|
@@ -0,0 +1,84 @@
|
|
|
+<?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="wrap_content"
|
|
|
+ app:layout_constraintTop_toTopOf="parent">
|
|
|
+
|
|
|
+
|
|
|
+ <androidx.constraintlayout.widget.ConstraintLayout
|
|
|
+ android:id="@+id/cl_content"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="40dp"
|
|
|
+ android:layout_marginEnd="40dp"
|
|
|
+ android:background="@drawable/shape_white_20"
|
|
|
+ android:paddingBottom="30dp"
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
+ app:layout_constraintTop_toTopOf="parent">
|
|
|
+
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/tv_invite_title"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="30dp"
|
|
|
+ android:text="@string/tips"
|
|
|
+ android:textColor="#0F172A"
|
|
|
+ android:textSize="18sp"
|
|
|
+ android:textStyle="bold"
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toTopOf="parent" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/tv_hint"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="16dp"
|
|
|
+ android:text="@string/close_account_connect_service"
|
|
|
+ android:textColor="#0F172A"
|
|
|
+ android:textSize="14sp"
|
|
|
+ android:gravity="center"
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/tv_invite_title" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/tvOk"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="44dp"
|
|
|
+ android:layout_marginTop="20dp"
|
|
|
+ android:layout_marginEnd="24dp"
|
|
|
+ android:layout_marginStart="24dp"
|
|
|
+ android:background="@drawable/shape_ff56b7_37"
|
|
|
+ android:gravity="center"
|
|
|
+ android:text="OK"
|
|
|
+ android:textColor="#fff"
|
|
|
+ android:textSize="@dimen/sp_16"
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/tv_hint" />
|
|
|
+
|
|
|
+ </androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:id="@+id/iv_bg"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="100dp"
|
|
|
+ android:layout_marginStart="40dp"
|
|
|
+ android:layout_marginEnd="40dp"
|
|
|
+ android:background="@mipmap/bg_invite"
|
|
|
+ app:layout_constraintTop_toTopOf="@+id/cl_content" />
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:id="@+id/iv_close"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="20dp"
|
|
|
+ android:src="@mipmap/ic_finish_password"
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/cl_content" />
|
|
|
+
|
|
|
+</androidx.constraintlayout.widget.ConstraintLayout>
|