wjc
2024-12-02 f50e8e60e9da99e4f69d8ab76810dc7e5fb448bc
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
<?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">
 
    <ImageView
        android:id="@+id/null_data_gif_animation_iv"
        android:layout_width="246dp"
        android:layout_height="158.5dp"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        tools:ignore="MissingConstraints" />
 
    <TextView
        android:id="@+id/null_data_tv"
        android:layout_width="0dp"
        android:layout_height="22.5dp"
        android:gravity="center"
        android:textColor="@color/text_66FFFFFF"
        android:textSize="@dimen/text_16"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/null_data_gif_animation_iv" />
 
 
</androidx.constraintlayout.widget.ConstraintLayout>