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
91
<?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:orientation="vertical">
 
    <ImageView
        android:id="@+id/iv_cancel"
        android:layout_width="22dp"
        android:layout_height="22dp"
        android:layout_gravity="right"
        android:layout_marginTop="10dp"
        android:src="@drawable/ic_delete_gray"></ImageView>
 
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="center_horizontal"
        android:layout_marginLeft="10dp"
        android:layout_marginRight="10dp"
        android:background="@drawable/shape_user_guide_btn"
        android:gravity="center_horizontal"
        android:orientation="vertical"
        android:padding="10dp">
 
        <TextView
            android:id="@+id/tv_step_num"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="第一步"
            android:textColor="#ffffffff"
            android:textSize="18sp"></TextView>
 
        <TextView
            android:id="@+id/tv_step_name"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="2dp"
            android:text="快速查找商品优惠券和返利"
            android:textColor="#ffffffff"
            android:textSize="15sp"></TextView>
    </LinearLayout>
 
 
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="center_horizontal"
        android:layout_marginLeft="10dp"
        android:layout_marginTop="20dp"
        android:layout_marginRight="10dp"
        android:background="@drawable/shape_user_guide_content_bg"
        android:gravity="center_horizontal"
        android:orientation="vertical"
        android:padding="20dp">
 
        <com.wpc.library.widget.ResizableImageView
            android:id="@+id/iv_content"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginLeft="20dp"
            android:layout_marginRight="20dp"
            android:src="@drawable/user_guide_1"></com.wpc.library.widget.ResizableImageView>
 
        <TextView
            android:id="@+id/tv_content_desc"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="20dp"
            android:text="复制淘宝/京东/拼多多标题或链接"
            android:textColor="#ffffffff"
            android:textSize="15sp"></TextView>
    </LinearLayout>
 
 
    <TextView
        android:id="@+id/tv_next"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginLeft="30dp"
        android:layout_marginTop="20dp"
        android:layout_marginRight="30dp"
        android:background="@drawable/shape_user_guide_btn"
        android:gravity="center"
        android:padding="10dp"
        android:text="知道了"
        android:textColor="#ffffffff"
        android:textSize="15sp"></TextView>
 
 
</LinearLayout>