wjc
2025-05-07 b9cc7390e8e8ce64c41c26fb369c98ce669d660c
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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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="@dimen/dp_20"
    android:gravity="center">
 
 
    <!--    <ProgressBar-->
    <!--        android:id="@+id/load_pb"-->
    <!--        android:layout_width="40dp"-->
    <!--        android:layout_height="40dp"-->
    <!--        android:layout_marginTop="@dimen/dp_10"-->
    <!--        android:indeterminateDrawable="@drawable/progress_small"-->
    <!--        app:layout_constraintEnd_toEndOf="parent"-->
    <!--        app:layout_constraintStart_toStartOf="parent"-->
    <!--        app:layout_constraintTop_toTopOf="parent" />-->
 
    <ImageView
        android:id="@+id/load_more_iv"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        />
 
    <TextView
        android:id="@+id/load_more_content_tv"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:maxLines="1"
        android:paddingStart="@dimen/dp_10"
        android:paddingEnd="@dimen/dp_0"
        android:text="@string/device_loading"
        android:textColor="@color/text_FFACACAC"
        android:textSize="@dimen/text_12"
 
 
        />
 
</LinearLayout>