wjc
2025-05-07 8814f3f0828e6ac652a29cc9de9f971fd55bca5b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?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/dialog_parent_cl"
        android:layout_width="match_parent"
        android:layout_height="270dp"
        android:layout_marginStart="@dimen/dp_16"
        android:layout_marginTop="155dp"
        android:layout_marginEnd="@dimen/dp_16"
        android:background="@drawable/loading_ffffffff_4"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent">
 
<!--        <Spinner-->
<!--            android:id="@+id/spinner"-->
<!--            android:layout_width="100dp"-->
<!--            android:layout_height="@dimen/dp_50"-->
<!--        />-->
    </androidx.constraintlayout.widget.ConstraintLayout>
 
</androidx.constraintlayout.widget.ConstraintLayout>