<?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"
|
android:background="@color/black">
|
<androidx.constraintlayout.widget.ConstraintLayout
|
android:layout_width="match_parent"
|
android:background="@drawable/bg_white_3"
|
android:layout_marginHorizontal="90dp"
|
android:layout_marginVertical="70dp"
|
android:layout_height="match_parent">
|
<TextView
|
android:id="@+id/tv_close"
|
android:layout_width="120dp"
|
android:layout_height="40dp"
|
android:textSize="18sp"
|
android:gravity="center"
|
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintEnd_toEndOf="parent"
|
android:textColor="@color/colorPrimary"
|
android:layout_marginBottom="28dp"
|
app:layout_constraintBottom_toBottomOf="parent"
|
android:textStyle="bold"
|
android:text="Close"
|
android:background="@drawable/bg_oragne_line_6"/>
|
<ScrollView
|
android:layout_width="match_parent"
|
android:layout_height="0dp"
|
app:layout_constraintTop_toTopOf="parent"
|
app:layout_constraintBottom_toTopOf="@id/tv_close">
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:id="@+id/ll_code"
|
android:orientation="vertical"/>
|
</ScrollView>
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
</androidx.constraintlayout.widget.ConstraintLayout>
|