Skip to content
  • P
    Projects
  • G
    Groups
  • S
    Snippets
  • Help

android / dayu

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Snippets
  • Members
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • dayu
  • orderCenter
  • src
  • main
  • res
  • layout
  • fragment_multi_detail.xml
Find file
Normal viewHistoryPermalink
fragment_multi_detail.xml 43.9 KB
Newer Older
罗翻's avatar
android1.7页面书写
d2d8ad87
 
罗翻 committed 7 years ago
1
<?xml version="1.0" encoding="utf-8"?>
luofan's avatar
feat:学习模块增加,
9cea3504
 
luofan committed 3 years ago
2 3
<layout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools">
罗翻's avatar
android1.7页面书写
d2d8ad87
 
罗翻 committed 7 years ago
4 5 6

    <data>

罗翻's avatar
新增多任务
493772ab
 
罗翻 committed 6 years ago
7 8 9
        <import type="android.view.View" />

        <import type="android.text.TextUtils" />
罗翻's avatar
android1.7页面书写
d2d8ad87
 
罗翻 committed 7 years ago
10

罗翻's avatar
新增多任务
493772ab
 
罗翻 committed 6 years ago
11 12 13 14
        <variable
            name="item"
            type="com.dayu.order.api.protocol.OrderDetail" />
    </data>
罗翻's avatar
android1.7页面书写
d2d8ad87
 
罗翻 committed 7 years ago
15

罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
16
    <LinearLayout
罗翻's avatar
android1.7页面书写
d2d8ad87
 
罗翻 committed 7 years ago
17
        android:layout_width="match_parent"
罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
18 19
        android:layout_height="wrap_content"
        android:orientation="vertical">
罗翻's avatar
android1.7页面书写
d2d8ad87
 
罗翻 committed 7 years ago
20

wukun's avatar
1.androidx
831aeac7
 
wukun committed 2 years ago
21
        <androidx.core.widget.NestedScrollView
罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
22
            android:id="@+id/nv_top"
罗翻's avatar
android1.7页面书写
d2d8ad87
 
罗翻 committed 7 years ago
23
            android:layout_width="match_parent"
罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
24 25
            android:layout_height="0dp"
            android:layout_weight="1">
罗翻's avatar
android1.7页面书写
d2d8ad87
 
罗翻 committed 7 years ago
26

罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
27
            <LinearLayout
罗翻's avatar
android1.7页面书写
d2d8ad87
 
罗翻 committed 7 years ago
28 29
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
30
                android:orientation="vertical">
罗翻's avatar
android1.7页面书写
d2d8ad87
 
罗翻 committed 7 years ago
31 32

                <TextView
罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
33 34 35 36
                    android:layout_width="match_parent"
                    android:layout_height="43dp"
                    android:paddingLeft="15dp"
                    android:paddingTop="@dimen/dp_15"
罗翻's avatar
处理工单前增加活体检测
242a5793
 
罗翻 committed 6 years ago
37
                    android:text="@string/tv_order_eg"
mReturn's avatar
order
fcdebea6
 
mReturn committed 5 years ago
38
                    android:textColor="@color/cl_home_title_text_color"
罗翻's avatar
android1.7页面书写
d2d8ad87
 
罗翻 committed 7 years ago
39 40
                    android:textSize="14sp" />

罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
41 42
                <RelativeLayout
                    android:layout_width="match_parent"
罗翻's avatar
android1.7页面书写
d2d8ad87
 
罗翻 committed 7 years ago
43
                    android:layout_height="wrap_content"
罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
44 45
                    android:background="@color/white"
                    android:paddingLeft="15dp">
罗翻's avatar
android1.7页面书写
d2d8ad87
 
罗翻 committed 7 years ago
46

罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
47 48 49 50 51
                    <TextView
                        android:id="@+id/tv_num"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_marginTop="@dimen/dp_15"
罗翻's avatar
修改收取费用打开,但是不填写费用导致支付的bug
6477e57f
 
罗翻 committed 6 years ago
52
                        android:text="@string/order_num"
罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
53 54
                        android:textColor="@color/tv_cl"
                        android:textSize="14sp" />
罗翻's avatar
android1.7页面书写
d2d8ad87
 
罗翻 committed 7 years ago
55

罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
56 57 58 59 60 61 62 63 64 65
                    <TextView
                        android:id="@+id/tv_order_num"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_marginLeft="19dp"
                        android:layout_marginTop="@dimen/dp_15"
                        android:layout_toRightOf="@+id/tv_num"
                        android:text='@{!TextUtils.isEmpty(item.orderNum)?item.orderNum:@string/no_data,default = @string/no_data}'
                        android:textColor="@color/cl_home_title_text_color"
                        android:textSize="14sp" />
罗翻's avatar
android1.7页面书写
d2d8ad87
 
罗翻 committed 7 years ago
66

罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
67 68 69 70 71 72
                    <TextView
                        android:id="@+id/tv_state"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_below="@+id/tv_num"
                        android:layout_marginTop="15dp"
罗翻's avatar
修改收取费用打开,但是不填写费用导致支付的bug
6477e57f
 
罗翻 committed 6 years ago
73
                        android:text="@string/order_state"
罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
74 75
                        android:textColor="@color/tv_cl"
                        android:textSize="14sp" />
罗翻's avatar
android1.7页面书写
d2d8ad87
 
罗翻 committed 7 years ago
76

罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
77 78 79 80 81 82 83 84
                    <TextView
                        android:id="@+id/tv_order_state"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_below="@+id/tv_num"
                        android:layout_marginLeft="19dp"
                        android:layout_marginTop="@dimen/dp_15"
                        android:layout_toRightOf="@+id/tv_state"
罗翻's avatar
修改收取费用打开,但是不填写费用导致支付的bug
6477e57f
 
罗翻 committed 6 years ago
85
                        android:text="@string/order_doing"
罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
86 87
                        android:textColor="@color/cl_tab_read"
                        android:textSize="14sp" />
罗翻's avatar
新增多任务
493772ab
 
罗翻 committed 6 years ago
88

罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
89
                    <TextView
mReturn's avatar
服务工单添加紧急状态标识
db26bdf1
 
mReturn committed 4 years ago
90 91 92 93 94 95 96 97 98 99 100
                        android:id="@+id/tv_alert0"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_below="@+id/tv_state"
                        android:layout_marginTop="15dp"
                        android:text="优  先  级"
                        android:textColor="@color/tv_cl"
                        android:textSize="14sp" />

                    <TextView
                        android:id="@+id/tv_alert"
罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
101 102 103
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_below="@+id/tv_state"
mReturn's avatar
服务工单添加紧急状态标识
db26bdf1
 
mReturn committed 4 years ago
104 105 106 107
                        android:layout_marginLeft="19dp"
                        android:layout_marginTop="@dimen/dp_15"
                        android:layout_toRightOf="@+id/tv_alert0"
                        android:text="正常"
mReturn's avatar
fix bug
d4b0075f
 
mReturn committed 4 years ago
108
                        android:textColor="@color/common_text_color"
mReturn's avatar
服务工单添加紧急状态标识
db26bdf1
 
mReturn committed 4 years ago
109 110 111 112 113 114 115
                        android:textSize="14sp" />

                    <TextView
                        android:id="@+id/tv_content"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_below="@+id/tv_alert0"
罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
116
                        android:layout_marginTop="15dp"
罗翻's avatar
修改收取费用打开,但是不填写费用导致支付的bug
6477e57f
 
罗翻 committed 6 years ago
117
                        android:text="@string/server_content"
罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
118 119 120 121 122
                        android:textColor="@color/tv_cl"
                        android:textSize="14sp" />

                    <LinearLayout
                        android:id="@+id/ll_server_content"
罗翻's avatar
新增多任务
493772ab
 
罗翻 committed 6 years ago
123
                        android:layout_width="match_parent"
罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
124
                        android:layout_height="wrap_content"
mReturn's avatar
服务工单添加紧急状态标识
db26bdf1
 
mReturn committed 4 years ago
125
                        android:layout_below="@id/tv_alert0"
罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
126 127 128
                        android:layout_marginLeft="19dp"
                        android:layout_marginTop="15dp"
                        android:layout_toRightOf="@+id/tv_content">
罗翻's avatar
android1.7页面书写
d2d8ad87
 
罗翻 committed 7 years ago
129

wukun's avatar
1.androidx
831aeac7
 
wukun committed 2 years ago
130
                        <androidx.recyclerview.widget.RecyclerView
罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
131 132 133 134
                            android:id="@+id/rl_server_content"
                            android:layout_width="match_parent"
                            android:layout_height="wrap_content" />
                    </LinearLayout>
罗翻's avatar
android1.7页面书写
d2d8ad87
 
罗翻 committed 7 years ago
135

罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
136 137 138 139 140
                    <TextView
                        android:id="@+id/tv_time"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_below="@+id/ll_server_content"
罗翻's avatar
修改收取费用打开,但是不填写费用导致支付的bug
6477e57f
 
罗翻 committed 6 years ago
141
                        android:text="@string/door_time"
罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
142
                        android:textColor="@color/tv_cl"
mReturn's avatar
工单优化
3e0b61f3
 
mReturn committed 5 years ago
143 144
                        android:textSize="14sp"
                        android:visibility="gone" />
罗翻's avatar
android1.7页面书写
d2d8ad87
 
罗翻 committed 7 years ago
145

罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
146 147 148 149 150 151 152 153 154
                    <TextView
                        android:id="@+id/order_time"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_below="@+id/ll_server_content"
                        android:layout_marginLeft="19dp"
                        android:layout_toRightOf="@+id/tv_time"
                        android:text='@{!TextUtils.isEmpty(item.confirmDoorTime)?item.confirmDoorTime:@string/no_data}'
                        android:textColor="@color/cl_home_title_text_color"
mReturn's avatar
工单优化
3e0b61f3
 
mReturn committed 5 years ago
155 156 157 158 159 160 161 162 163 164 165 166 167
                        android:textSize="14sp"
                        android:visibility="gone" />

                    <TextView
                        android:id="@+id/tv_device_count_"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_below="@+id/ll_server_content"
                        android:layout_marginTop="15dp"
                        android:text="@string/device_count"
                        android:textColor="@color/tv_cl"
                        android:textSize="14sp" />

mReturn's avatar
友盟推送&工单优化
8d476a37
 
mReturn committed 5 years ago
168 169 170
                    <RelativeLayout
                        android:id="@+id/ll_device_count"
                        android:layout_width="match_parent"
mReturn's avatar
工单优化
3e0b61f3
 
mReturn committed 5 years ago
171
                        android:layout_height="wrap_content"
mReturn's avatar
友盟推送&工单优化
8d476a37
 
mReturn committed 5 years ago
172
                        android:layout_below="@id/ll_server_content"
mReturn's avatar
工单优化
3e0b61f3
 
mReturn committed 5 years ago
173 174
                        android:layout_marginLeft="19dp"
                        android:layout_marginTop="15dp"
mReturn's avatar
友盟推送&工单优化
8d476a37
 
mReturn committed 5 years ago
175
                        android:layout_toRightOf="@+id/tv_content">
mReturn's avatar
工单详情添加小绿人相关信息
be1f83c4
 
mReturn committed 4 years ago
176

mReturn's avatar
友盟推送&工单优化
8d476a37
 
mReturn committed 5 years ago
177 178 179 180 181 182 183 184
                        <TextView
                            android:id="@+id/tv_no_device"
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:text="@string/no_data"
                            android:textColor="@color/cl_home_title_text_color"
                            android:textSize="14sp" />

wukun's avatar
1.androidx
831aeac7
 
wukun committed 2 years ago
185
                        <androidx.recyclerview.widget.RecyclerView
mReturn's avatar
友盟推送&工单优化
8d476a37
 
mReturn committed 5 years ago
186 187 188 189 190
                            android:id="@+id/rl_device_count"
                            android:layout_width="match_parent"
                            android:layout_height="wrap_content" />
                    </RelativeLayout>

mReturn's avatar
工单详情添加小绿人相关信息
be1f83c4
 
mReturn committed 4 years ago
191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217
                    <LinearLayout
                        android:id="@+id/ll_wrong"
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
                        android:layout_below="@+id/ll_device_count"
                        android:layout_marginTop="15dp"
                        android:orientation="horizontal"
                        android:visibility="gone">

                        <TextView
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:text="故障部位"
                            android:textColor="@color/tv_cl"
                            android:textSize="14sp" />

                        <RelativeLayout
                            android:layout_width="match_parent"
                            android:layout_height="wrap_content"
                            android:layout_marginLeft="19dp">

                            <TextView
                                android:id="@+id/tv_no_wrong"
                                style="@style/common_text_style"
                                android:drawableLeft="@drawable/ic_wrong_num"
                                android:textSize="14sp" />

wukun's avatar
1.androidx
831aeac7
 
wukun committed 2 years ago
218
                            <androidx.recyclerview.widget.RecyclerView
mReturn's avatar
工单详情添加小绿人相关信息
be1f83c4
 
mReturn committed 4 years ago
219 220 221 222 223 224
                                android:id="@+id/rv_wrong"
                                android:layout_width="match_parent"
                                android:layout_height="wrap_content" />
                        </RelativeLayout>

                    </LinearLayout>
mReturn's avatar
fix bug
d4b0075f
 
mReturn committed 4 years ago
225

mReturn's avatar
V2.6.7
d9ed14d3
 
mReturn committed 4 years ago
226 227 228 229 230 231 232
                    <LinearLayout
                        android:id="@+id/ll_wrong_info"
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
                        android:layout_below="@+id/ll_wrong"
                        android:layout_marginTop="15dp"
                        android:orientation="horizontal"
mReturn's avatar
fix bug
d4b0075f
 
mReturn committed 4 years ago
233
                        android:visibility="gone">
mReturn's avatar
V2.6.7
d9ed14d3
 
mReturn committed 4 years ago
234 235 236 237

                        <TextView
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
mReturn's avatar
调整工单详情页小绿人相关数据展示
0394856e
 
mReturn committed 4 years ago
238
                            android:text="设备状态"
mReturn's avatar
V2.6.7
d9ed14d3
 
mReturn committed 4 years ago
239 240 241 242 243 244 245 246 247 248 249 250
                            android:textColor="@color/tv_cl"
                            android:textSize="14sp" />

                        <RelativeLayout
                            android:layout_width="match_parent"
                            android:layout_height="wrap_content"
                            android:layout_marginLeft="19dp">

                            <TextView
                                android:id="@+id/tv_no_wrong_info"
                                style="@style/common_text_style"
                                android:drawableLeft="@drawable/ic_wrong_num"
mReturn's avatar
fix bug
d4b0075f
 
mReturn committed 4 years ago
251 252 253
                                android:text="@string/no_data"
                                android:textSize="14sp"
                                android:visibility="gone" />
mReturn's avatar
V2.6.7
d9ed14d3
 
mReturn committed 4 years ago
254

wukun's avatar
1.androidx
831aeac7
 
wukun committed 2 years ago
255
                            <androidx.recyclerview.widget.RecyclerView
mReturn's avatar
V2.6.7
d9ed14d3
 
mReturn committed 4 years ago
256 257 258 259 260 261
                                android:id="@+id/rv_wrong_info"
                                android:layout_width="match_parent"
                                android:layout_height="wrap_content" />
                        </RelativeLayout>

                    </LinearLayout>
mReturn's avatar
工单详情添加小绿人相关信息
be1f83c4
 
mReturn committed 4 years ago
262 263 264 265 266

                    <LinearLayout
                        android:id="@+id/ll_site_info"
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
mReturn's avatar
V2.6.7
d9ed14d3
 
mReturn committed 4 years ago
267
                        android:layout_below="@+id/ll_wrong_info"
mReturn's avatar
fix bug
d4b0075f
 
mReturn committed 4 years ago
268 269
                        android:orientation="vertical"
                        android:visibility="gone">
mReturn's avatar
工单详情添加小绿人相关信息
be1f83c4
 
mReturn committed 4 years ago
270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321

                        <LinearLayout
                            android:layout_width="match_parent"
                            android:layout_height="wrap_content"
                            android:layout_marginTop="15dp"
                            android:orientation="horizontal">

                            <TextView
                                android:layout_width="wrap_content"
                                android:layout_height="wrap_content"
                                android:text="设备编号"
                                android:textColor="@color/tv_cl"
                                android:textSize="14sp" />

                            <TextView
                                android:id="@+id/tv_device_sn"
                                style="@style/common_text_style"
                                android:layout_marginLeft="19dp"
                                android:textSize="14sp" />

                        </LinearLayout>

                        <LinearLayout
                            android:layout_width="match_parent"
                            android:layout_height="wrap_content"
                            android:layout_marginTop="15dp"
                            android:orientation="horizontal">

                            <TextView
                                android:layout_width="wrap_content"
                                android:layout_height="wrap_content"
                                android:text="设备保修期"
                                android:textColor="@color/tv_cl"
                                android:textSize="14sp" />

                            <TextView
                                android:id="@+id/tv_device_time"
                                style="@style/common_text_style"
                                android:layout_marginLeft="6dp"
                                android:textSize="14sp" />

                        </LinearLayout>

                        <LinearLayout
                            android:layout_width="match_parent"
                            android:layout_height="wrap_content"
                            android:layout_marginTop="15dp"
                            android:orientation="horizontal">

                            <TextView
                                android:layout_width="wrap_content"
                                android:layout_height="wrap_content"
mReturn's avatar
V2.6.7
d9ed14d3
 
mReturn committed 4 years ago
322
                                android:text="站点名称"
mReturn's avatar
工单详情添加小绿人相关信息
be1f83c4
 
mReturn committed 4 years ago
323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354
                                android:textColor="@color/tv_cl"
                                android:textSize="14sp" />

                            <TextView
                                android:id="@+id/tv_site_id"
                                style="@style/common_text_style"
                                android:layout_marginLeft="19dp"
                                android:textSize="14sp" />

                        </LinearLayout>

                        <LinearLayout
                            android:layout_width="match_parent"
                            android:layout_height="wrap_content"
                            android:layout_marginTop="15dp"
                            android:orientation="horizontal">

                            <TextView
                                android:layout_width="wrap_content"
                                android:layout_height="wrap_content"
                                android:text="站点地址"
                                android:textColor="@color/tv_cl"
                                android:textSize="14sp" />

                            <TextView
                                android:id="@+id/tv_site_info"
                                style="@style/common_text_style"
                                android:layout_marginLeft="19dp"
                                android:textSize="14sp" />

                        </LinearLayout>
                    </LinearLayout>
罗翻's avatar
android1.7页面书写
d2d8ad87
 
罗翻 committed 7 years ago
355

罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
356 357 358 359
                    <TextView
                        android:id="@+id/tv_remark"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
mReturn's avatar
工单详情添加小绿人相关信息
be1f83c4
 
mReturn committed 4 years ago
360
                        android:layout_below="@+id/ll_site_info"
罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
361
                        android:layout_marginTop="15dp"
罗翻's avatar
修改收取费用打开,但是不填写费用导致支付的bug
6477e57f
 
罗翻 committed 6 years ago
362
                        android:text="@string/order_remark"
罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
363 364
                        android:textColor="@color/tv_cl"
                        android:textSize="14sp" />
罗翻's avatar
新增多任务
493772ab
 
罗翻 committed 6 years ago
365 366


罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
367 368
                    <RelativeLayout
                        android:id="@+id/rl_info_detail"
罗翻's avatar
新增多任务
493772ab
 
罗翻 committed 6 years ago
369 370
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
mReturn's avatar
工单详情添加小绿人相关信息
be1f83c4
 
mReturn committed 4 years ago
371
                        android:layout_below="@+id/ll_site_info"
罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399
                        android:layout_marginLeft="19dp"
                        android:layout_marginTop="@dimen/dp_15"
                        android:layout_toRightOf="@+id/tv_remark">

                        <TextView
                            android:id="@+id/order_remark"
                            android:layout_width="match_parent"
                            android:layout_height="wrap_content"
                            android:gravity="center_vertical"
                            android:maxEms="500"
                            android:maxLines="2"
                            android:text='@{TextUtils.isEmpty(item.comment)?@string/no_data:item.comment}'
                            android:textColor="@color/cl_home_title_text_color"
                            android:textSize="13sp" />

                        <TextView
                            android:id="@+id/tv_look_more"
                            android:layout_width="match_parent"
                            android:layout_height="wrap_content"
                            android:layout_below="@+id/order_remark"
                            android:gravity="center_horizontal"
                            android:text="@string/look_more"
                            android:textColor="@color/cl_receiving_order_item_data"
                            android:textSize="13.3sp"
                            android:visibility="gone" />

                    </RelativeLayout>

罗翻's avatar
新增多任务
493772ab
 
罗翻 committed 6 years ago
400 401

                    <TextView
罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
402 403 404
                        android:id="@+id/tv_fujian"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
罗翻's avatar
工单详情备注查看更多
aa59c105
 
罗翻 committed 6 years ago
405
                        android:layout_below="@+id/rl_info_detail"
罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
406
                        android:layout_marginTop="15dp"
mReturn's avatar
工单优化
3e0b61f3
 
mReturn committed 5 years ago
407
                        android:layout_marginBottom="10dp"
罗翻's avatar
增加拨打电话多联系人,增加地址支持导航
b89ddb7a
 
罗翻 committed 6 years ago
408
                        android:text="@string/order_attachment"
罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
409 410 411 412 413
                        android:textColor="@color/tv_cl"
                        android:textSize="14sp" />

                    <LinearLayout
                        android:id="@+id/ll_fujian"
罗翻's avatar
新增多任务
493772ab
 
罗翻 committed 6 years ago
414 415
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
罗翻's avatar
工单详情备注查看更多
aa59c105
 
罗翻 committed 6 years ago
416
                        android:layout_below="@+id/rl_info_detail"
罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
417 418
                        android:layout_marginLeft="19dp"
                        android:layout_marginTop="@dimen/dp_15"
mReturn's avatar
工单优化
3e0b61f3
 
mReturn committed 5 years ago
419
                        android:layout_marginBottom="10dp"
罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
420
                        android:layout_toRightOf="@+id/tv_remark">
罗翻's avatar
新增多任务
493772ab
 
罗翻 committed 6 years ago
421

wukun's avatar
1.androidx
831aeac7
 
wukun committed 2 years ago
422
                        <androidx.recyclerview.widget.RecyclerView
罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
423 424 425 426
                            android:id="@+id/rl_fujian"
                            android:layout_width="match_parent"
                            android:layout_height="wrap_content" />
                    </LinearLayout>
罗翻's avatar
新增多任务
493772ab
 
罗翻 committed 6 years ago
427

罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
428
                </RelativeLayout>
罗翻's avatar
android1.7页面书写
d2d8ad87
 
罗翻 committed 7 years ago
429

mReturn's avatar
fix bug
8330d922
 
mReturn committed 5 years ago
430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446
                <LinearLayout
                    android:id="@+id/ll_no_receive_price"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:background="@color/white"
                    android:orientation="horizontal"
                    android:paddingBottom="10dp">

                    <TextView
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_marginLeft="@dimen/dp_15"
                        android:text="@string/be_takeed_price"
                        android:textColor="@color/tv_cl"
                        android:textSize="14sp" />

                    <TextView
mReturn's avatar
v2.4.5
3984adc1
 
mReturn committed 5 years ago
447
                        android:id="@+id/tv_no_receive_price"
mReturn's avatar
fix bug
8330d922
 
mReturn committed 5 years ago
448 449 450 451 452 453 454
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_marginLeft="19dp"
                        android:textColor="@color/common_red"
                        android:textSize="14sp" />
                </LinearLayout>

罗翻's avatar
android1.7页面书写
d2d8ad87
 
罗翻 committed 7 years ago
455
                <TextView
罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
456 457 458 459
                    android:layout_width="match_parent"
                    android:layout_height="43dp"
                    android:paddingLeft="15dp"
                    android:paddingTop="@dimen/dp_15"
罗翻's avatar
修改收取费用打开,但是不填写费用导致支付的bug
6477e57f
 
罗翻 committed 6 years ago
460
                    android:text="@string/customer_info"
罗翻's avatar
android1.7页面书写
d2d8ad87
 
罗翻 committed 7 years ago
461 462 463
                    android:textColor="@color/tv_cl"
                    android:textSize="14sp" />

罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
464
                <RelativeLayout
罗翻's avatar
新增多任务
493772ab
 
罗翻 committed 6 years ago
465
                    android:layout_width="match_parent"
罗翻's avatar
新增多任务
baa74de1
 
罗翻 committed 7 years ago
466
                    android:layout_height="wrap_content"
罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
467 468
                    android:background="@color/white"
                    android:paddingLeft="15dp">
罗翻's avatar
新增多任务
493772ab
 
罗翻 committed 6 years ago
469

罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
470 471 472 473 474
                    <TextView
                        android:id="@+id/tv_customer_type"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_marginTop="@dimen/dp_15"
罗翻's avatar
修改收取费用打开,但是不填写费用导致支付的bug
6477e57f
 
罗翻 committed 6 years ago
475
                        android:text="@string/customer_type"
罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
476 477
                        android:textColor="@color/tv_cl"
                        android:textSize="14sp" />
罗翻's avatar
android1.7页面书写
d2d8ad87
 
罗翻 committed 7 years ago
478

罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
479 480 481 482 483 484 485 486 487 488
                    <TextView
                        android:id="@+id/customer_type"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_marginLeft="19dp"
                        android:layout_marginTop="@dimen/dp_15"
                        android:layout_toRightOf="@+id/tv_customer_type"
                        android:text="@{item.customerType == 1?@string/personal_customer:@string/enterprise_customer}"
                        android:textColor="@color/cl_home_title_text_color"
                        android:textSize="14sp" />
罗翻's avatar
android1.7页面书写
d2d8ad87
 
罗翻 committed 7 years ago
489

罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
490
                    <TextView
罗翻's avatar
android2.0.0
70880c49
 
罗翻 committed 6 years ago
491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512
                        android:id="@+id/tv_company_name"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_below="@id/tv_customer_type"
                        android:layout_marginTop="@dimen/dp_13"
                        android:text="企业名称"
                        android:textColor="@color/cl_order_text_one"
                        android:textSize="@dimen/sp_14" />

                    <TextView
                        android:id="@+id/company_name"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_below="@id/tv_customer_type"
                        android:layout_marginLeft="19dp"
                        android:layout_marginTop="@dimen/dp_13"
                        android:layout_toRightOf="@id/tv_company_name"
                        android:text='@{!TextUtils.isEmpty(item.customerCompany)?item.customerCompany:@string/no_data}'
                        android:textColor="@color/cl_home_title_text_color"
                        android:textSize="@dimen/sp_14" />

                    <TextView
罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
513 514 515
                        android:id="@+id/tv_customer_name"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
mReturn's avatar
工单优化
3e0b61f3
 
mReturn committed 5 years ago
516
                        android:layout_below="@+id/tv_company_name"
罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
517 518 519
                        android:layout_alignBaseline="@+id/customer_name"
                        android:layout_alignBottom="@+id/customer_name"
                        android:layout_alignParentStart="true"
mReturn's avatar
工单优化
3e0b61f3
 
mReturn committed 5 years ago
520
                        android:layout_alignParentLeft="true"
罗翻's avatar
修改收取费用打开,但是不填写费用导致支付的bug
6477e57f
 
罗翻 committed 6 years ago
521
                        android:text="@string/customer_name"
罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
522 523
                        android:textColor="@color/tv_cl"
                        android:textSize="14sp" />
罗翻's avatar
android1.7页面书写
d2d8ad87
 
罗翻 committed 7 years ago
524

罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
525 526 527 528
                    <TextView
                        android:id="@+id/customer_name"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
罗翻's avatar
android2.0.0
70880c49
 
罗翻 committed 6 years ago
529
                        android:layout_below="@+id/tv_company_name"
罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
530 531
                        android:layout_marginLeft="19dp"
                        android:layout_marginTop="@dimen/dp_15"
罗翻's avatar
android2.0.0
70880c49
 
罗翻 committed 6 years ago
532
                        android:layout_toRightOf="@+id/tv_customer_name"
罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
533 534 535
                        android:text='@{!TextUtils.isEmpty(item.customerName)?item.customerName:@string/no_data}'
                        android:textColor="@color/cl_home_title_text_color"
                        android:textSize="14sp" />
罗翻's avatar
新增多任务
baa74de1
 
罗翻 committed 7 years ago
536

罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
537
                    <TextView
罗翻's avatar
增加签名和sn码
d46bcf9d
 
罗翻 committed 6 years ago
538 539 540
                        android:id="@+id/customer_signature"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
罗翻's avatar
android v1.91
ed2cb01c
 
罗翻 committed 6 years ago
541
                        android:layout_below="@+id/tv_customer_type"
mReturn's avatar
工单优化
3e0b61f3
 
mReturn committed 5 years ago
542
                        android:layout_alignParentRight="true"
罗翻's avatar
android v1.91
ed2cb01c
 
罗翻 committed 6 years ago
543
                        android:layout_marginLeft="19dp"
罗翻's avatar
增加签名和sn码
d46bcf9d
 
罗翻 committed 6 years ago
544
                        android:layout_marginTop="@dimen/dp_15"
mReturn's avatar
工单优化
3e0b61f3
 
mReturn committed 5 years ago
545
                        android:layout_marginRight="@dimen/dp_15"
罗翻's avatar
增加签名和sn码
d46bcf9d
 
罗翻 committed 6 years ago
546
                        android:layout_toRightOf="@+id/customer_name"
罗翻's avatar
android v1.91
ed2cb01c
 
罗翻 committed 6 years ago
547
                        android:gravity="right"
罗翻's avatar
修改收取费用打开,但是不填写费用导致支付的bug
6477e57f
 
罗翻 committed 6 years ago
548
                        android:text="@string/check_signature"
罗翻's avatar
增加签名和sn码
d46bcf9d
 
罗翻 committed 6 years ago
549
                        android:textColor="@color/bg_button"
mReturn's avatar
工单详情添加小绿人相关信息
be1f83c4
 
mReturn committed 4 years ago
550 551
                        android:textSize="14sp"
                        android:visibility="gone" />
罗翻's avatar
增加签名和sn码
d46bcf9d
 
罗翻 committed 6 years ago
552 553

                    <TextView
罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
554 555 556 557 558
                        android:id="@+id/tv_customer_mobile"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_below="@+id/tv_customer_name"
                        android:layout_marginTop="@dimen/dp_15"
罗翻's avatar
修改收取费用打开,但是不填写费用导致支付的bug
6477e57f
 
罗翻 committed 6 years ago
559
                        android:text="@string/tv_two_text_three"
罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
560 561
                        android:textColor="@color/tv_cl"
                        android:textSize="14sp" />
罗翻's avatar
android1.7页面书写
d2d8ad87
 
罗翻 committed 7 years ago
562

罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
563 564 565 566 567 568 569 570 571 572 573
                    <TextView
                        android:id="@+id/customer_moblie"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_below="@+id/tv_customer_name"
                        android:layout_marginLeft="19dp"
                        android:layout_marginTop="@dimen/dp_15"
                        android:layout_toRightOf="@+id/tv_customer_mobile"
                        android:text='@{!TextUtils.isEmpty(item.customerMobile)?item.customerMobile:@string/no_data}'
                        android:textColor="@color/cl_home_title_text_color"
                        android:textSize="14sp" />
罗翻's avatar
android1.7页面书写
d2d8ad87
 
罗翻 committed 7 years ago
574

罗翻's avatar
增加拨打电话多联系人,增加地址支持导航
b89ddb7a
 
罗翻 committed 6 years ago
575 576 577 578 579 580

                    <TextView
                        android:id="@+id/tv_contact_tel"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_below="@id/customer_moblie"
罗翻's avatar
修改收取费用打开,但是不填写费用导致支付的bug
6477e57f
 
罗翻 committed 6 years ago
581
                        android:layout_marginLeft="19dp"
罗翻's avatar
增加拨打电话多联系人,增加地址支持导航
b89ddb7a
 
罗翻 committed 6 years ago
582 583
                        android:layout_marginTop="@dimen/dp_13"
                        android:layout_toRightOf="@+id/tv_customer_mobile"
罗翻's avatar
修改收取费用打开,但是不填写费用导致支付的bug
6477e57f
 
罗翻 committed 6 years ago
584
                        android:text="@{item.customerTelphome}"
罗翻's avatar
增加拨打电话多联系人,增加地址支持导航
b89ddb7a
 
罗翻 committed 6 years ago
585
                        android:textColor="@color/cl_home_title_text_color"
罗翻's avatar
android v1.91
ed2cb01c
 
罗翻 committed 6 years ago
586 587
                        android:textSize="14sp"
                        android:visibility="@{TextUtils.isEmpty(item.customerTelphome)?View.GONE:View.VISIBLE}" />
罗翻's avatar
增加拨打电话多联系人,增加地址支持导航
b89ddb7a
 
罗翻 committed 6 years ago
588 589


罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
590 591 592 593
                    <TextView
                        android:id="@+id/tv_address"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
罗翻's avatar
增加拨打电话多联系人,增加地址支持导航
b89ddb7a
 
罗翻 committed 6 years ago
594
                        android:layout_below="@+id/tv_contact_tel"
罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
595
                        android:layout_marginTop="@dimen/dp_15"
罗翻's avatar
修改收取费用打开,但是不填写费用导致支付的bug
6477e57f
 
罗翻 committed 6 years ago
596
                        android:text="@string/tv_two_text_foure"
罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
597 598
                        android:textColor="@color/tv_cl"
                        android:textSize="14sp" />
罗翻's avatar
android1.7页面书写
d2d8ad87
 
罗翻 committed 7 years ago
599

罗翻's avatar
增加拨打电话多联系人,增加地址支持导航
b89ddb7a
 
罗翻 committed 6 years ago
600 601 602
                    <LinearLayout
                        android:id="@+id/navigation"
                        android:layout_width="match_parent"
罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
603
                        android:layout_height="wrap_content"
罗翻's avatar
android v1.91
ed2cb01c
 
罗翻 committed 6 years ago
604
                        android:layout_below="@+id/tv_contact_tel"
罗翻's avatar
增加内容提交的字数限制
8f83615b
 
罗翻 committed 6 years ago
605
                        android:layout_marginLeft="19dp"
罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
606
                        android:layout_marginTop="@dimen/dp_15"
罗翻's avatar
增加拨打电话多联系人,增加地址支持导航
b89ddb7a
 
罗翻 committed 6 years ago
607 608 609 610 611
                        android:layout_toRightOf="@id/tv_address"
                        android:orientation="horizontal">

                        <TextView
                            android:id="@+id/tv_customer_address"
mReturn's avatar
fix bug
9cfc3748
 
mReturn committed 5 years ago
612
                            android:layout_width="245dp"
罗翻's avatar
增加拨打电话多联系人,增加地址支持导航
b89ddb7a
 
罗翻 committed 6 years ago
613
                            android:layout_height="wrap_content"
罗翻's avatar
android v1.91
ed2cb01c
 
罗翻 committed 6 years ago
614
                            android:layout_weight="1"
罗翻's avatar
增加拨打电话多联系人,增加地址支持导航
b89ddb7a
 
罗翻 committed 6 years ago
615 616 617 618 619 620 621 622 623
                            android:ellipsize="end"
                            android:maxLines="2"
                            android:text='@{item.provinceName+item.cityName+item.districtName+item.address}'
                            android:textColor="@color/cl_home_title_text_color"
                            android:textSize="@dimen/sp_13.3" />

                        <ImageView
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
罗翻's avatar
android v1.91
ed2cb01c
 
罗翻 committed 6 years ago
624
                            android:layout_gravity="center_vertical"
罗翻's avatar
增加拨打电话多联系人,增加地址支持导航
b89ddb7a
 
罗翻 committed 6 years ago
625 626 627 628 629
                            android:layout_marginLeft="15dp"
                            android:layout_marginRight="15dp"
                            android:paddingBottom="5dp"
                            android:src="@drawable/icon_navigation" />
                    </LinearLayout>
罗翻's avatar
android1.7页面书写
d2d8ad87
 
罗翻 committed 7 years ago
630

罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
631 632 633 634 635
                    <TextView
                        android:id="@+id/tv_end_time"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_below="@+id/tv_address"
罗翻's avatar
android v1.91
ed2cb01c
 
罗翻 committed 6 years ago
636
                        android:layout_marginTop="@dimen/dp_15"
罗翻's avatar
修改收取费用打开,但是不填写费用导致支付的bug
6477e57f
 
罗翻 committed 6 years ago
637
                        android:text="@string/lookforword_time"
罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
638 639
                        android:textColor="@color/tv_cl"
                        android:textSize="14sp" />
罗翻's avatar
android1.7页面书写
d2d8ad87
 
罗翻 committed 7 years ago
640

罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
641 642 643 644 645 646 647 648 649 650 651
                    <TextView
                        android:id="@+id/end_time"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_below="@+id/tv_address"
                        android:layout_marginLeft="19dp"
                        android:layout_marginTop="@dimen/dp_15"
                        android:layout_toRightOf="@+id/tv_end_time"
                        android:text='@{!TextUtils.isEmpty(item.appointmentTime)?item.appointmentTime:@string/no_data}'
                        android:textColor="@color/cl_home_title_text_color"
                        android:textSize="14sp" />
luofan's avatar
最新代码提交
a7a59a7f
 
luofan committed 2 years ago
652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675

                    <TextView
                        android:id="@+id/workTimeTv"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_below="@+id/tv_end_time"
                        android:layout_marginTop="@dimen/dp_15"
                        android:layout_marginBottom="10dp"
                        android:text="预计工时"
                        android:textColor="@color/tv_cl"
                        android:textSize="14sp" />

                    <TextView
                        android:id="@+id/workTime"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_below="@+id/tv_end_time"
                        android:layout_marginLeft="19dp"
                        android:layout_marginTop="@dimen/dp_15"
                        android:layout_marginBottom="10dp"
                        android:layout_toRightOf="@+id/workTimeTv"
                        android:text='@{!TextUtils.isEmpty(item.referenceTime)?item.referenceTime:@string/no_data}'
                        android:textColor="@color/cl_home_title_text_color"
                        android:textSize="14sp" />
罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
676
                </RelativeLayout>
罗翻's avatar
android1.7页面书写
d2d8ad87
 
罗翻 committed 7 years ago
677 678

                <TextView
罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
679 680 681 682
                    android:layout_width="match_parent"
                    android:layout_height="43dp"
                    android:paddingLeft="15dp"
                    android:paddingTop="@dimen/dp_15"
罗翻's avatar
修改收取费用打开,但是不填写费用导致支付的bug
6477e57f
 
罗翻 committed 6 years ago
683
                    android:text="@string/money_info"
mReturn's avatar
order
fcdebea6
 
mReturn committed 5 years ago
684
                    android:textColor="@color/cl_home_title_text_color"
mReturn's avatar
工单详情添加小绿人相关信息
be1f83c4
 
mReturn committed 4 years ago
685 686
                    android:textSize="14sp"
                    android:visibility="gone" />
罗翻's avatar
android1.7页面书写
d2d8ad87
 
罗翻 committed 7 years ago
687

罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
688 689
                <LinearLayout
                    android:layout_width="match_parent"
罗翻's avatar
android1.7页面书写
d2d8ad87
 
罗翻 committed 7 years ago
690
                    android:layout_height="wrap_content"
罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
691 692
                    android:background="@color/white"
                    android:orientation="horizontal"
mReturn's avatar
工单详情添加小绿人相关信息
be1f83c4
 
mReturn committed 4 years ago
693 694
                    android:paddingBottom="10dp"
                    android:visibility="gone">
罗翻's avatar
android1.7页面书写
d2d8ad87
 
罗翻 committed 7 years ago
695

罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
696 697 698
                    <TextView
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
罗翻's avatar
android v1.91
ed2cb01c
 
罗翻 committed 6 years ago
699
                        android:layout_marginLeft="@dimen/dp_15"
罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
700
                        android:layout_marginTop="@dimen/dp_15"
罗翻's avatar
修改收取费用打开,但是不填写费用导致支付的bug
6477e57f
 
罗翻 committed 6 years ago
701
                        android:text="@string/order_payer"
罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
702 703
                        android:textColor="@color/tv_cl"
                        android:textSize="14sp" />
罗翻's avatar
android1.7页面书写
d2d8ad87
 
罗翻 committed 7 years ago
704

罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
705 706 707 708 709 710 711
                    <TextView
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_marginLeft="@dimen/dp_10"
                        android:layout_marginTop="@dimen/dp_15"
                        android:textColor="@color/cl_home_title_text_color"
                        android:textSize="14sp" />
mReturn's avatar
fix bug
16d0953d
 
mReturn committed 5 years ago
712 713
                    <!--android:text="@{item.repairType == 1?@string/payer_baonei:@string/payer_baowai}"-->

罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
714
                </LinearLayout>
mReturn's avatar
order
fcdebea6
 
mReturn committed 5 years ago
715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745

                <TextView
                    android:layout_width="match_parent"
                    android:layout_height="43dp"
                    android:paddingLeft="15dp"
                    android:paddingTop="@dimen/dp_15"
                    android:text="@string/order_send_info"
                    android:textColor="@color/cl_home_title_text_color"
                    android:textSize="14sp" />

                <LinearLayout
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:background="@color/white"
                    android:orientation="horizontal"
                    android:paddingBottom="10dp">

                    <TextView
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_marginLeft="@dimen/dp_15"
                        android:layout_marginTop="@dimen/dp_15"
                        android:text="@string/order_send_company"
                        android:textColor="@color/tv_cl"
                        android:textSize="14sp" />

                    <TextView
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_marginLeft="@dimen/dp_10"
                        android:layout_marginTop="@dimen/dp_15"
mReturn's avatar
v2.4.5
3984adc1
 
mReturn committed 5 years ago
746
                        android:text='@{!TextUtils.isEmpty(item.createdProvider)?item.createdProvider:@string/dayu_platform}'
mReturn's avatar
order
fcdebea6
 
mReturn committed 5 years ago
747
                        android:textColor="@color/cl_home_title_text_color"
luofan's avatar
feat:学习模块增加,
9cea3504
 
luofan committed 3 years ago
748 749 750 751 752 753 754 755 756
                        android:textSize="14sp"
                        tools:text="发给JFJF" />

                    <TextView
                        android:id="@+id/teamName"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:paddingStart="2dp"
                        android:layout_marginTop="@dimen/dp_15"
luofan's avatar
提交代码
87e8465e
 
luofan committed 2 years ago
757
                        android:textColor="@color/common_red"
luofan's avatar
feat:学习模块增加,
9cea3504
 
luofan committed 3 years ago
758
                        android:textSize="14dp" />
mReturn's avatar
order
fcdebea6
 
mReturn committed 5 years ago
759 760 761
                </LinearLayout>

                <LinearLayout
mReturn's avatar
工单详情添加小绿人相关信息
be1f83c4
 
mReturn committed 4 years ago
762
                    android:id="@+id/ll_bottom_price"
mReturn's avatar
order
fcdebea6
 
mReturn committed 5 years ago
763 764 765 766 767 768 769 770 771 772 773
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:background="@color/white"
                    android:orientation="horizontal"
                    android:paddingBottom="10dp">

                    <TextView
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_marginLeft="@dimen/dp_15"
                        android:layout_marginTop="@dimen/dp_15"
mReturn's avatar
调试接口
a2504a15
 
mReturn committed 5 years ago
774
                        android:text="@string/order_take_price"
mReturn's avatar
order
fcdebea6
 
mReturn committed 5 years ago
775 776 777 778 779 780 781 782
                        android:textColor="@color/tv_cl"
                        android:textSize="14sp" />

                    <TextView
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_marginLeft="@dimen/dp_10"
                        android:layout_marginTop="@dimen/dp_15"
mReturn's avatar
调试接口
a2504a15
 
mReturn committed 5 years ago
783
                        android:text='@{item.price+"元"}'
mReturn's avatar
fix bug
16d0953d
 
mReturn committed 5 years ago
784
                        android:textColor="@color/common_red"
mReturn's avatar
order
fcdebea6
 
mReturn committed 5 years ago
785
                        android:textSize="14sp" />
mReturn's avatar
工单详情添加小绿人相关信息
be1f83c4
 
mReturn committed 4 years ago
786

mReturn's avatar
fix bug
9cfc3748
 
mReturn committed 5 years ago
787 788 789
                    <TextView
                        android:layout_width="0dp"
                        android:layout_height="wrap_content"
mReturn's avatar
工单详情添加小绿人相关信息
be1f83c4
 
mReturn committed 4 years ago
790 791
                        android:layout_weight="1" />

mReturn's avatar
fix bug
9cfc3748
 
mReturn committed 5 years ago
792 793 794 795 796 797 798 799 800 801 802 803 804
                    <TextView
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_marginTop="@dimen/dp_15"
                        android:text="@string/take_price_subsidy"
                        android:textColor="@color/tv_cl"
                        android:textSize="14sp" />

                    <TextView
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_marginLeft="@dimen/dp_10"
                        android:layout_marginTop="@dimen/dp_15"
mReturn's avatar
工单详情添加小绿人相关信息
be1f83c4
 
mReturn committed 4 years ago
805
                        android:layout_marginRight="50dp"
mReturn's avatar
fix bug
9cfc3748
 
mReturn committed 5 years ago
806 807 808
                        android:text='@{item.subsidyPrice+"元"}'
                        android:textColor="@color/common_red"
                        android:textSize="14sp" />
mReturn's avatar
order
fcdebea6
 
mReturn committed 5 years ago
809
                </LinearLayout>
mReturn's avatar
工单优化
3e0b61f3
 
mReturn committed 5 years ago
810

mReturn's avatar
order
fcdebea6
 
mReturn committed 5 years ago
811
                <TextView
mReturn's avatar
fix bug
d4b0075f
 
mReturn committed 4 years ago
812 813 814 815 816 817
                    android:layout_width="match_parent"
                    android:layout_height="43dp"
                    android:paddingLeft="15dp"
                    android:paddingTop="@dimen/dp_15"
                    android:text="工具装备清单"
                    android:textColor="@color/cl_home_title_text_color"
wukun's avatar
1220
7a202982
 
wukun committed a year ago
818 819
                    android:textSize="14sp"
                    android:visibility="gone"/>
mReturn's avatar
fix bug
d4b0075f
 
mReturn committed 4 years ago
820

wukun's avatar
1.androidx
831aeac7
 
wukun committed 2 years ago
821
                <androidx.recyclerview.widget.RecyclerView
mReturn's avatar
fix bug
d4b0075f
 
mReturn committed 4 years ago
822 823
                    android:id="@+id/rv_tools"
                    android:layout_width="match_parent"
luofan's avatar
feat:学习模块增加,
9cea3504
 
luofan committed 3 years ago
824
                    android:layout_height="wrap_content"
wukun's avatar
1220
7a202982
 
wukun committed a year ago
825 826
                    android:background="@color/white"
                    android:visibility="gone"/>
mReturn's avatar
fix bug
d4b0075f
 
mReturn committed 4 years ago
827 828

                <TextView
wukun's avatar
1220
718af5b9
 
wukun committed a year ago
829 830 831 832 833 834 835 836 837
                    android:id="@+id/tv_component"
                    android:layout_width="match_parent"
                    android:layout_height="43dp"
                    android:background="@color/color_ee"
                    android:gravity="center_vertical"
                    android:paddingLeft="15dp"
                    android:text="沟通记录"
                    android:textColor="@color/cl_home_title_text_color"
                    android:textSize="14sp"
wukun's avatar
1225
0a7085fa
 
wukun committed a year ago
838 839
                    android:textStyle="bold"
                    android:visibility="gone"/>
wukun's avatar
1220
718af5b9
 
wukun committed a year ago
840 841 842 843 844 845 846

                <LinearLayout
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:layout_alignParentBottom="true"
                    android:layout_margin="10dp"
                    android:background="@color/cl_white"
wukun's avatar
1225
0a7085fa
 
wukun committed a year ago
847 848
                    android:orientation="horizontal"
                    android:visibility="gone">
wukun's avatar
1220
718af5b9
 
wukun committed a year ago
849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884

                    <ImageView
                        android:id="@+id/iv_avatar"
                        android:layout_width="35dp"
                        android:layout_height="35dp"
                        android:layout_marginRight="10dp" />

                    <EditText
                        android:id="@+id/edt_comment"
                        android:layout_width="0dp"
                        android:layout_height="35dp"
                        android:layout_weight="1"
                        android:background="#f5f5f5"
                        android:hint="@string/ask_detail"
                        android:padding="5dp"
                        android:paddingLeft="5dp"
                        android:singleLine="true"
                        android:textSize="13sp" />

                    <Button
                        android:id="@+id/btn_send"
                        android:layout_width="80dp"
                        android:layout_height="35dp"
                        android:layout_alignParentRight="true"
                        android:layout_centerVertical="true"
                        android:layout_gravity="center_vertical"
                        android:background="@color/cl_home_button"
                        android:gravity="center"
                        android:text="@string/send_str"
                        android:textColor="@color/cl_white"
                        android:textSize="13sp" />
                </LinearLayout>

                <androidx.recyclerview.widget.RecyclerView
                    android:id="@+id/rl_component"
                    android:layout_width="match_parent"
wukun's avatar
1225
0a7085fa
 
wukun committed a year ago
885 886
                    android:layout_height="wrap_content"
                    android:visibility="gone"/>
wukun's avatar
1220
718af5b9
 
wukun committed a year ago
887 888

                <TextView
mReturn's avatar
order
fcdebea6
 
mReturn committed 5 years ago
889 890 891 892 893 894 895 896 897
                    android:id="@+id/tv_contact_seller"
                    android:layout_width="match_parent"
                    android:layout_height="35dp"
                    android:layout_margin="20dp"
                    android:background="@color/cl_home_button"
                    android:gravity="center"
                    android:text="@string/contact_seller_support"
                    android:textColor="@color/white"
                    android:textSize="16sp" />
罗翻's avatar
android1.7页面书写
d2d8ad87
 
罗翻 committed 7 years ago
898
            </LinearLayout>
wukun's avatar
1.androidx
831aeac7
 
wukun committed 2 years ago
899
        </androidx.core.widget.NestedScrollView>
罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
900 901 902 903 904 905 906 907 908 909

        <TextView
            android:id="@+id/customer_acceptance"
            android:layout_width="match_parent"
            android:layout_height="49dp"
            android:background="@color/cl_home_button"
            android:gravity="center"
            android:text="@string/customer_acceptance"
            android:textColor="@color/white"
            android:textSize="16sp" />
mReturn's avatar
工单详情添加小绿人相关信息
be1f83c4
 
mReturn committed 4 years ago
910

mReturn's avatar
友盟推送&工单优化
5fb96c68
 
mReturn committed 5 years ago
911 912 913 914 915 916 917 918 919
        <TextView
            android:id="@+id/tv_take_order"
            android:layout_width="match_parent"
            android:layout_height="49dp"
            android:background="@color/cl_home_button"
            android:gravity="center"
            android:text="@string/take_oreder_now"
            android:textColor="@color/white"
            android:textSize="16sp" />
罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
920
    </LinearLayout>
罗翻's avatar
android1.7页面书写
d2d8ad87
 
罗翻 committed 7 years ago
921
</layout>