admin
2020-07-16 b5e008514ffa376154fee55423779a4f21c9f1b7
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<?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="match_parent"
    android:orientation="vertical">
 
    <ScrollView
        android:id="@+id/sv_content"
        android:layout_width="match_parent"
        android:layout_height="match_parent">
 
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="vertical">
 
            <View
                android:layout_width="match_parent"
                android:layout_height="10dp"
                android:background="@color/register_gray" />
 
            <include layout="@layout/item_yellow_notice" />
 
            <com.wpc.library.widget.ResizableImageView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:src="@drawable/ic_order_appeal_top" />
 
            <android.support.v7.widget.LinearLayoutCompat
                android:layout_width="match_parent"
                android:layout_height="42dp"
                android:layout_marginLeft="20dp"
                android:layout_marginTop="20dp"
                android:layout_marginRight="20dp"
                android:orientation="horizontal">
 
                <EditText
                    android:textCursorDrawable="@drawable/shape_input_cursor"
                    android:id="@+id/et_order_id"
                    android:layout_width="0dp"
                    android:layout_height="match_parent"
                    android:layout_weight="8"
                    android:background="@drawable/shape_category_fillter2"
                    android:digits="1234567890"
                    android:focusable="false"
                    android:focusableInTouchMode="true"
                    android:gravity="center_vertical"
                    android:hint="请输入或粘贴淘宝订单号"
                    android:inputType="phone"
                    android:paddingStart="24dp"
                    android:paddingLeft="8dp"
                    android:paddingRight="8dp"
                    android:textSize="16sp" />
 
                <TextView
                    android:id="@+id/tv_refer_appeal"
                    android:layout_width="0dp"
                    android:layout_height="match_parent"
                    android:layout_weight="2"
                    android:background="@drawable/shape_go_search3"
                    android:gravity="center"
                    android:text="提交"
                    android:textColor="@color/white"
                    android:textSize="16sp" />
            </android.support.v7.widget.LinearLayoutCompat>
 
 
            <android.support.v7.widget.LinearLayoutCompat
                android:layout_width="match_parent"
                android:layout_height="30dp"
                android:layout_marginLeft="30dp"
                android:layout_marginTop="22dp"
                android:layout_marginRight="30dp"
                android:orientation="horizontal">
 
                <TextView
                    android:id="@+id/tv_order_appeal_aout"
                    android:layout_width="103dp"
                    android:layout_height="match_parent"
                    android:background="@drawable/shape_redsmall_bg3"
                    android:gravity="center"
                    android:text="自动找回"
                    android:textColor="#ffe5005c"
                    android:textSize="15sp"
                    android:visibility="gone" />
 
                <TextView
                    android:id="@+id/tv_order_appeal_doubt"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:layout_marginRight="15dp"
                    android:gravity="center_vertical|right"
                    android:text="订单找回是什么?"
                    android:textColor="@color/theme"
                    android:textSize="15sp" />
            </android.support.v7.widget.LinearLayoutCompat>
 
            <TextView
                android:id="@+id/iv_order_coursetxt"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="center_horizontal"
                android:layout_marginTop="50dp"
                android:text="手机淘宝中复制订单号教程"
                android:textColor="#ff333333"
                android:textSize="17sp" />
 
            <com.wpc.library.widget.ResizableImageView
                android:id="@+id/iv_order_course"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginTop="35dp"
                android:layout_marginBottom="106dp"
                android:src="@drawable/ic_order_appeal_buttom" />
        </LinearLayout>
    </ScrollView>
</LinearLayout>