<?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"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent">
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
android:id="@+id/loading_confirmation_cl"
|
android:layout_width="0dp"
|
android:layout_height="wrap_content"
|
android:layout_marginStart="@dimen/dp_48"
|
android:layout_marginTop="@dimen/dp_20"
|
android:layout_marginEnd="@dimen/dp_48"
|
android:layout_marginBottom="@dimen/dp_20"
|
android:background="@drawable/loading_confirmation_bj"
|
app:layout_constraintBottom_toBottomOf="parent"
|
app:layout_constraintEnd_toEndOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintTop_toTopOf="parent">
|
|
<TextView
|
android:id="@+id/loading_confirmation_title_tv"
|
android:layout_width="wrap_content"
|
android:layout_height="@dimen/dp_25"
|
android:layout_marginStart="@dimen/dp_20"
|
android:layout_marginTop="@dimen/dp_25"
|
android:layout_marginEnd="@dimen/dp_20"
|
android:textColor="@color/text_030D1C"
|
android:textSize="@dimen/text_18"
|
app:layout_constraintEnd_toEndOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintTop_toTopOf="parent" />
|
|
<TextView
|
android:id="@+id/loading_confirmation_content_tv"
|
android:layout_width="0dp"
|
android:layout_height="wrap_content"
|
android:layout_marginStart="@dimen/dp_20"
|
android:layout_marginTop="@dimen/dp_34"
|
android:layout_marginEnd="@dimen/dp_20"
|
android:layout_marginBottom="@dimen/dp_34"
|
android:gravity="center"
|
android:singleLine="false"
|
android:textColor="@color/text_030D1C"
|
app:layout_constraintBottom_toTopOf="@+id/dialog_confirm_bottom_line_ly"
|
app:layout_constraintEnd_toEndOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintTop_toBottomOf="@+id/loading_confirmation_title_tv"
|
|
/>
|
|
|
<LinearLayout
|
android:id="@+id/dialog_confirm_bottom_line_ly"
|
android:layout_width="0dp"
|
android:layout_height="@dimen/dp_52"
|
android:orientation="horizontal"
|
app:layout_constraintBottom_toBottomOf="parent"
|
app:layout_constraintEnd_toEndOf="parent"
|
app:layout_constraintStart_toStartOf="parent">
|
|
|
<LinearLayout
|
android:id="@+id/dialog_cancel_ly"
|
android:layout_width="@dimen/dp_0"
|
android:layout_height="match_parent"
|
android:layout_weight="1"
|
android:gravity="center">
|
|
<TextView
|
android:id="@+id/dialog_cancel_tv"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="@string/loading_cancel"
|
android:textColor="@color/text_7C8590"
|
android:textSize="@dimen/text_18" />
|
|
|
</LinearLayout>
|
|
<View
|
android:layout_width="0.5dp"
|
android:layout_height="@dimen/dp_23"
|
android:layout_gravity="center"
|
android:background="@color/text_E1E1E1" />
|
|
<LinearLayout
|
android:id="@+id/dialog_confirm_ly"
|
android:layout_width="@dimen/dp_0"
|
android:layout_height="match_parent"
|
android:layout_weight="1"
|
android:gravity="center">
|
|
<TextView
|
android:id="@+id/dialog_confirm_tv"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="@string/loading_affirm"
|
android:textColor="@color/text_FF245EC3"
|
android:textSize="@dimen/text_18" />
|
</LinearLayout>
|
</LinearLayout>
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|