mac
2023-10-25 28880ba7540c523d3e50d35416422396ef802c50
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?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/tip_parent_cl"
        android:layout_width="@dimen/dp_128"
        android:layout_height="@dimen/dp_120"
        android:background="@drawable/dialog_flashing_box"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent">
 
        <TextView
            android:id="@+id/tip_image_tv"
            android:layout_width="@dimen/dp_36"
            android:layout_height="@dimen/dp_36"
            android:layout_marginTop="@dimen/dp_28"
            android:background="@drawable/tip_fail"
            app:layout_constraintEnd_toEndOf="@id/tip_parent_cl"
            app:layout_constraintStart_toStartOf="@id/tip_parent_cl"
            app:layout_constraintTop_toTopOf="@id/tip_parent_cl" />
 
        <TextView
            android:id="@+id/tip_content_tv"
            android:layout_width="@dimen/dp_120"
            android:layout_height="wrap_content"
            android:layout_marginTop="8dp"
            android:gravity="center"
            android:textColor="@color/text_FFFFFFFF"
            android:textSize="@dimen/text_14"
            app:layout_constraintEnd_toEndOf="@id/tip_parent_cl"
            app:layout_constraintStart_toStartOf="@id/tip_parent_cl"
            app:layout_constraintTop_toBottomOf="@id/tip_image_tv" />
 
 
    </androidx.constraintlayout.widget.ConstraintLayout>
 
</androidx.constraintlayout.widget.ConstraintLayout>