lmw
2023-06-25 a988e7c15f5ce63785b77e01c89bec2565668982
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    android:orientation="vertical"
    android:background="@color/main_back"
    xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent"
    android:layout_height="match_parent">
 
    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
 
        <EditText
            android:id="@+id/et_search"
            android:layout_width="match_parent"
            android:layout_marginStart="14dp"
            android:layout_marginEnd="14dp"
            android:layout_marginTop="5dp"
            android:layout_marginBottom="5dp"
            android:drawableStart="@mipmap/icon_search"
            android:hint="搜索招聘信息"
            android:paddingStart="14dp"
            android:drawablePadding="5dp"
            android:imeOptions="actionSearch"
            android:textColor="#ff000000"
            android:singleLine="true"
            android:textSize="12sp"
            android:maxLines="1"
            android:background="@drawable/bg_write_cricle_4"
            android:layout_height="45dp"/>
 
 
        <View
            android:id="@+id/view_top"
            android:layout_width="match_parent"
            android:layout_height="45dp" />
 
        <TextView
            android:id="@+id/tv_cancel_search"
            android:visibility="gone"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:padding="5dp"
            android:layout_centerVertical="true"
            android:layout_alignParentEnd="true"
            android:layout_marginEnd="30dp"
            android:text="取消"
            android:textColor="#ff1e8fea"
            android:textSize="14sp"
            />
 
 
    </RelativeLayout>
 
    <LinearLayout
        android:id="@+id/ll_tops"
        android:layout_width="match_parent"
        android:layout_height="40dp"
        android:background="@color/white"
        android:orientation="horizontal">
 
        <RelativeLayout
            android:id="@+id/rl_driver_type"
            android:layout_width="0dp"
            android:gravity="center"
            android:layout_weight="1"
            android:layout_height="match_parent">
 
            <TextView
                android:id="@+id/tv_driver_type"
                android:layout_width="wrap_content"
                android:layout_height="match_parent"
                android:drawablePadding="3dp"
                android:gravity="center"
                android:drawableEnd="@mipmap/icon_arrow_open_black"
                android:text="司机类型"
                android:textColor="@color/color_ff333333"
                android:textSize="13sp"
                />
 
        </RelativeLayout>
 
 
        <RelativeLayout
            android:id="@+id/rl_money"
            android:layout_width="0dp"
            android:gravity="center"
            android:layout_weight="1"
            android:layout_height="match_parent">
 
            <TextView
                android:id="@+id/tv_money"
                android:layout_width="wrap_content"
                android:layout_height="match_parent"
                android:drawablePadding="3dp"
                android:gravity="center"
                android:drawableEnd="@mipmap/icon_arrow_open_black"
                android:text="薪资"
                android:textColor="#ff333333"
                android:textSize="13sp"
                />
 
        </RelativeLayout>
 
        <RelativeLayout
            android:id="@+id/rl_more"
            android:layout_width="0dp"
            android:gravity="center"
            android:layout_weight="1"
            android:layout_height="match_parent">
 
            <TextView
                android:id="@+id/tv_more"
                android:layout_width="wrap_content"
                android:layout_height="match_parent"
                android:drawablePadding="3dp"
                android:gravity="center"
                android:drawableEnd="@mipmap/icon_arrow_open_black"
                android:text="筛选"
                android:textColor="#ff333333"
                android:textSize="13sp"
                />
 
        </RelativeLayout>
 
 
 
    </LinearLayout>
 
    <RelativeLayout
        android:id="@+id/container"
        android:layout_marginTop="6dp"
        android:layout_width="match_parent"
        android:layout_height="match_parent"/>
 
</LinearLayout>