admin
2022-08-09 399ac289f80b7a40aa4210341db6b447cacdcf14
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@drawable/shape_user_protocol_dialog_bg"
    android:orientation="vertical">
 
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical">
 
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center_horizontal"
            android:layout_marginTop="20dp"
            android:layout_marginBottom="20dp"
            android:text="正在下载"
            android:textColor="#010101"
            android:textSize="16sp"></TextView>
 
 
        <FrameLayout
            android:layout_width="match_parent"
            android:layout_height="20dp"
            android:layout_marginLeft="20dp"
            android:layout_marginRight="20dp">
 
            <ImageView
                android:id="@+id/iv_progress_bg"
                android:layout_width="match_parent"
                android:layout_height="20dp"
                android:scaleType="fitXY"
                android:src="@drawable/process_share_multi_img_bg_"></ImageView>
 
            <ImageView
                android:id="@+id/iv_progress"
                android:layout_width="100dp"
                android:layout_height="match_parent"
                android:layout_gravity="left|center_vertical"
                android:layout_marginLeft="3px"
                android:layout_marginTop="1px"
                android:layout_marginBottom="2px"
                android:scaleType="fitXY"
                android:src="@drawable/process_share_multi_img"></ImageView>
 
        </FrameLayout>
 
        <LinearLayout
            android:id="@+id/ll_percent"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="-3dp"
            android:orientation="vertical"
            android:paddingLeft="3dp">
 
            <ImageView
                android:id="@+id/iv_percent_top"
                android:layout_width="5dp"
                android:layout_height="5dp"
                android:layout_gravity="center_horizontal"
                android:src="@drawable/multi_img_download_percent_bg"></ImageView>
 
            <TextView
                android:id="@+id/tv_percent"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:background="@drawable/shape_multi_images_download"
                android:gravity="center"
                android:text="20%"
                android:textColor="#DE0051"
                android:textSize="10sp"></TextView>
        </LinearLayout>
 
 
        <TextView
            android:id="@+id/tv_progress_desc"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center_horizontal"
            android:layout_marginTop="20dp"
            android:layout_marginBottom="30dp"
            android:text="已下载1/9张图片,请稍候..."
            android:textColor="#ff333333"
            android:textSize="12sp" />
    </LinearLayout>
 
 
</LinearLayout>