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 37.7 KB
Newer Older
罗翻's avatar
android1.7页面书写
d2d8ad87
 
罗翻 committed 6 years ago
1
<?xml version="1.0" encoding="utf-8"?>
罗翻's avatar
新增多任务
6faa6c8a
 
罗翻 committed 6 years ago
2
<layout xmlns:android="http://schemas.android.com/apk/res/android">
罗翻's avatar
android1.7页面书写
d2d8ad87
 
罗翻 committed 6 years ago
3 4 5

    <data>

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

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

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

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

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

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

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

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

罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
46 47 48 49 50
                    <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
51
                        android:text="@string/order_num"
罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
52 53
                        android:textColor="@color/tv_cl"
                        android:textSize="14sp" />
罗翻's avatar
android1.7页面书写
d2d8ad87
 
罗翻 committed 6 years ago
54

罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
55 56 57 58 59 60 61 62 63 64
                    <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 6 years ago
65

罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
66 67 68 69 70 71
                    <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
72
                        android:text="@string/order_state"
罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
73 74
                        android:textColor="@color/tv_cl"
                        android:textSize="14sp" />
罗翻's avatar
android1.7页面书写
d2d8ad87
 
罗翻 committed 6 years ago
75

罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
76 77 78 79 80 81 82 83
                    <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
84
                        android:text="@string/order_doing"
罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
85 86
                        android:textColor="@color/cl_tab_read"
                        android:textSize="14sp" />
罗翻's avatar
新增多任务
493772ab
 
罗翻 committed 6 years ago
87

罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
88 89 90 91 92 93
                    <TextView
                        android:id="@+id/tv_content"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_below="@+id/tv_state"
                        android:layout_marginTop="15dp"
罗翻's avatar
修改收取费用打开,但是不填写费用导致支付的bug
6477e57f
 
罗翻 committed 6 years ago
94
                        android:text="@string/server_content"
罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
95 96 97 98 99
                        android:textColor="@color/tv_cl"
                        android:textSize="14sp" />

                    <LinearLayout
                        android:id="@+id/ll_server_content"
罗翻's avatar
新增多任务
493772ab
 
罗翻 committed 6 years ago
100
                        android:layout_width="match_parent"
罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
101 102 103 104 105
                        android:layout_height="wrap_content"
                        android:layout_below="@id/tv_state"
                        android:layout_marginLeft="19dp"
                        android:layout_marginTop="15dp"
                        android:layout_toRightOf="@+id/tv_content">
罗翻's avatar
android1.7页面书写
d2d8ad87
 
罗翻 committed 6 years ago
106

罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
107 108 109 110 111
                        <android.support.v7.widget.RecyclerView
                            android:id="@+id/rl_server_content"
                            android:layout_width="match_parent"
                            android:layout_height="wrap_content" />
                    </LinearLayout>
罗翻's avatar
android1.7页面书写
d2d8ad87
 
罗翻 committed 6 years ago
112

罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
113 114 115 116 117
                    <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
118
                        android:text="@string/door_time"
罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
119
                        android:textColor="@color/tv_cl"
mReturn's avatar
工单优化
3e0b61f3
 
mReturn committed 5 years ago
120 121
                        android:textSize="14sp"
                        android:visibility="gone" />
罗翻's avatar
android1.7页面书写
d2d8ad87
 
罗翻 committed 6 years ago
122

罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
123 124 125 126 127 128 129 130 131
                    <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
132 133 134 135 136 137 138 139 140 141 142 143 144
                        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
145 146 147
                    <RelativeLayout
                        android:id="@+id/ll_device_count"
                        android:layout_width="match_parent"
mReturn's avatar
工单优化
3e0b61f3
 
mReturn committed 5 years ago
148
                        android:layout_height="wrap_content"
mReturn's avatar
友盟推送&工单优化
8d476a37
 
mReturn committed 5 years ago
149
                        android:layout_below="@id/ll_server_content"
mReturn's avatar
工单优化
3e0b61f3
 
mReturn committed 5 years ago
150 151
                        android:layout_marginLeft="19dp"
                        android:layout_marginTop="15dp"
mReturn's avatar
友盟推送&工单优化
8d476a37
 
mReturn committed 5 years ago
152
                        android:layout_toRightOf="@+id/tv_content">
mReturn's avatar
工单详情添加小绿人相关信息
be1f83c4
 
mReturn committed 4 years ago
153

mReturn's avatar
友盟推送&工单优化
8d476a37
 
mReturn committed 5 years ago
154 155 156 157 158 159 160 161 162 163 164 165 166 167
                        <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" />

                        <android.support.v7.widget.RecyclerView
                            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
168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201
                    <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" />

                            <android.support.v7.widget.RecyclerView
                                android:id="@+id/rv_wrong"
                                android:layout_width="match_parent"
                                android:layout_height="wrap_content" />
                        </RelativeLayout>

                    </LinearLayout>
mReturn's avatar
V2.6.7
d9ed14d3
 
mReturn committed 4 years ago
202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238
                    <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"
                        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_info"
                                style="@style/common_text_style"
                                android:text="@string/no_data"
                                android:visibility="gone"
                                android:drawableLeft="@drawable/ic_wrong_num"
                                android:textSize="14sp" />

                            <android.support.v7.widget.RecyclerView
                                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
239 240 241 242 243 244

                    <LinearLayout
                        android:visibility="gone"
                        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
245
                        android:layout_below="@+id/ll_wrong_info"
mReturn's avatar
工单详情添加小绿人相关信息
be1f83c4
 
mReturn committed 4 years ago
246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 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
                        android:orientation="vertical">

                        <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
299
                                android:text="站点名称"
mReturn's avatar
工单详情添加小绿人相关信息
be1f83c4
 
mReturn committed 4 years ago
300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331
                                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 6 years ago
332

罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
333 334 335 336
                    <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
337
                        android:layout_below="@+id/ll_site_info"
罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
338
                        android:layout_marginTop="15dp"
罗翻's avatar
修改收取费用打开,但是不填写费用导致支付的bug
6477e57f
 
罗翻 committed 6 years ago
339
                        android:text="@string/order_remark"
罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
340 341
                        android:textColor="@color/tv_cl"
                        android:textSize="14sp" />
罗翻's avatar
新增多任务
493772ab
 
罗翻 committed 6 years ago
342 343


罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
344 345
                    <RelativeLayout
                        android:id="@+id/rl_info_detail"
罗翻's avatar
新增多任务
493772ab
 
罗翻 committed 6 years ago
346 347
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
mReturn's avatar
工单详情添加小绿人相关信息
be1f83c4
 
mReturn committed 4 years ago
348
                        android:layout_below="@+id/ll_site_info"
罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376
                        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
377 378

                    <TextView
罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
379 380 381
                        android:id="@+id/tv_fujian"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
罗翻's avatar
工单详情备注查看更多
aa59c105
 
罗翻 committed 6 years ago
382
                        android:layout_below="@+id/rl_info_detail"
罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
383
                        android:layout_marginTop="15dp"
mReturn's avatar
工单优化
3e0b61f3
 
mReturn committed 5 years ago
384
                        android:layout_marginBottom="10dp"
罗翻's avatar
增加拨打电话多联系人,增加地址支持导航
b89ddb7a
 
罗翻 committed 6 years ago
385
                        android:text="@string/order_attachment"
罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
386 387 388 389 390
                        android:textColor="@color/tv_cl"
                        android:textSize="14sp" />

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

罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
399 400 401 402 403
                        <android.support.v7.widget.RecyclerView
                            android:id="@+id/rl_fujian"
                            android:layout_width="match_parent"
                            android:layout_height="wrap_content" />
                    </LinearLayout>
罗翻's avatar
新增多任务
493772ab
 
罗翻 committed 6 years ago
404

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

mReturn's avatar
fix bug
8330d922
 
mReturn committed 5 years ago
407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423
                <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
424
                        android:id="@+id/tv_no_receive_price"
mReturn's avatar
fix bug
8330d922
 
mReturn committed 5 years ago
425 426 427 428 429 430 431
                        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 6 years ago
432
                <TextView
罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
433 434 435 436
                    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
437
                    android:text="@string/customer_info"
罗翻's avatar
android1.7页面书写
d2d8ad87
 
罗翻 committed 6 years ago
438 439 440
                    android:textColor="@color/tv_cl"
                    android:textSize="14sp" />

罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
441
                <RelativeLayout
罗翻's avatar
新增多任务
493772ab
 
罗翻 committed 6 years ago
442
                    android:layout_width="match_parent"
罗翻's avatar
新增多任务
baa74de1
 
罗翻 committed 6 years ago
443
                    android:layout_height="wrap_content"
罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
444 445
                    android:background="@color/white"
                    android:paddingLeft="15dp">
罗翻's avatar
新增多任务
493772ab
 
罗翻 committed 6 years ago
446

罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
447 448 449 450 451
                    <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
452
                        android:text="@string/customer_type"
罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
453 454
                        android:textColor="@color/tv_cl"
                        android:textSize="14sp" />
罗翻's avatar
android1.7页面书写
d2d8ad87
 
罗翻 committed 6 years ago
455

罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
456 457 458 459 460 461 462 463 464 465
                    <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 6 years ago
466

罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
467
                    <TextView
罗翻's avatar
android2.0.0
70880c49
 
罗翻 committed 6 years ago
468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489
                        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
490 491 492
                        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
493
                        android:layout_below="@+id/tv_company_name"
罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
494 495 496
                        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
497
                        android:layout_alignParentLeft="true"
罗翻's avatar
修改收取费用打开,但是不填写费用导致支付的bug
6477e57f
 
罗翻 committed 6 years ago
498
                        android:text="@string/customer_name"
罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
499 500
                        android:textColor="@color/tv_cl"
                        android:textSize="14sp" />
罗翻's avatar
android1.7页面书写
d2d8ad87
 
罗翻 committed 6 years ago
501

罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
502 503 504 505
                    <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
506
                        android:layout_below="@+id/tv_company_name"
罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
507 508
                        android:layout_marginLeft="19dp"
                        android:layout_marginTop="@dimen/dp_15"
罗翻's avatar
android2.0.0
70880c49
 
罗翻 committed 6 years ago
509
                        android:layout_toRightOf="@+id/tv_customer_name"
罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
510 511 512
                        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 6 years ago
513

罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
514
                    <TextView
罗翻's avatar
增加签名和sn码
d46bcf9d
 
罗翻 committed 6 years ago
515 516 517
                        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
518
                        android:layout_below="@+id/tv_customer_type"
mReturn's avatar
工单优化
3e0b61f3
 
mReturn committed 5 years ago
519
                        android:layout_alignParentRight="true"
罗翻's avatar
android v1.91
ed2cb01c
 
罗翻 committed 6 years ago
520
                        android:layout_marginLeft="19dp"
罗翻's avatar
增加签名和sn码
d46bcf9d
 
罗翻 committed 6 years ago
521
                        android:layout_marginTop="@dimen/dp_15"
mReturn's avatar
工单优化
3e0b61f3
 
mReturn committed 5 years ago
522
                        android:layout_marginRight="@dimen/dp_15"
罗翻's avatar
增加签名和sn码
d46bcf9d
 
罗翻 committed 6 years ago
523
                        android:layout_toRightOf="@+id/customer_name"
罗翻's avatar
android v1.91
ed2cb01c
 
罗翻 committed 6 years ago
524
                        android:gravity="right"
罗翻's avatar
修改收取费用打开,但是不填写费用导致支付的bug
6477e57f
 
罗翻 committed 6 years ago
525
                        android:text="@string/check_signature"
罗翻's avatar
增加签名和sn码
d46bcf9d
 
罗翻 committed 6 years ago
526
                        android:textColor="@color/bg_button"
mReturn's avatar
工单详情添加小绿人相关信息
be1f83c4
 
mReturn committed 4 years ago
527 528
                        android:textSize="14sp"
                        android:visibility="gone" />
罗翻's avatar
增加签名和sn码
d46bcf9d
 
罗翻 committed 6 years ago
529 530

                    <TextView
罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
531 532 533 534 535
                        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
536
                        android:text="@string/tv_two_text_three"
罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
537 538
                        android:textColor="@color/tv_cl"
                        android:textSize="14sp" />
罗翻's avatar
android1.7页面书写
d2d8ad87
 
罗翻 committed 6 years ago
539

罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
540 541 542 543 544 545 546 547 548 549 550
                    <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 6 years ago
551

罗翻's avatar
增加拨打电话多联系人,增加地址支持导航
b89ddb7a
 
罗翻 committed 6 years ago
552 553 554 555 556 557

                    <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
558
                        android:layout_marginLeft="19dp"
罗翻's avatar
增加拨打电话多联系人,增加地址支持导航
b89ddb7a
 
罗翻 committed 6 years ago
559 560
                        android:layout_marginTop="@dimen/dp_13"
                        android:layout_toRightOf="@+id/tv_customer_mobile"
罗翻's avatar
修改收取费用打开,但是不填写费用导致支付的bug
6477e57f
 
罗翻 committed 6 years ago
561
                        android:text="@{item.customerTelphome}"
罗翻's avatar
增加拨打电话多联系人,增加地址支持导航
b89ddb7a
 
罗翻 committed 6 years ago
562
                        android:textColor="@color/cl_home_title_text_color"
罗翻's avatar
android v1.91
ed2cb01c
 
罗翻 committed 6 years ago
563 564
                        android:textSize="14sp"
                        android:visibility="@{TextUtils.isEmpty(item.customerTelphome)?View.GONE:View.VISIBLE}" />
罗翻's avatar
增加拨打电话多联系人,增加地址支持导航
b89ddb7a
 
罗翻 committed 6 years ago
565 566


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

罗翻's avatar
增加拨打电话多联系人,增加地址支持导航
b89ddb7a
 
罗翻 committed 6 years ago
577 578 579
                    <LinearLayout
                        android:id="@+id/navigation"
                        android:layout_width="match_parent"
罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
580
                        android:layout_height="wrap_content"
罗翻's avatar
android v1.91
ed2cb01c
 
罗翻 committed 6 years ago
581
                        android:layout_below="@+id/tv_contact_tel"
罗翻's avatar
增加内容提交的字数限制
8f83615b
 
罗翻 committed 6 years ago
582
                        android:layout_marginLeft="19dp"
罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
583
                        android:layout_marginTop="@dimen/dp_15"
罗翻's avatar
增加拨打电话多联系人,增加地址支持导航
b89ddb7a
 
罗翻 committed 6 years ago
584 585 586 587 588
                        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
589
                            android:layout_width="245dp"
罗翻's avatar
增加拨打电话多联系人,增加地址支持导航
b89ddb7a
 
罗翻 committed 6 years ago
590
                            android:layout_height="wrap_content"
罗翻's avatar
android v1.91
ed2cb01c
 
罗翻 committed 6 years ago
591
                            android:layout_weight="1"
罗翻's avatar
增加拨打电话多联系人,增加地址支持导航
b89ddb7a
 
罗翻 committed 6 years ago
592 593 594 595 596 597 598 599 600
                            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
601
                            android:layout_gravity="center_vertical"
罗翻's avatar
增加拨打电话多联系人,增加地址支持导航
b89ddb7a
 
罗翻 committed 6 years ago
602 603 604 605 606
                            android:layout_marginLeft="15dp"
                            android:layout_marginRight="15dp"
                            android:paddingBottom="5dp"
                            android:src="@drawable/icon_navigation" />
                    </LinearLayout>
罗翻's avatar
android1.7页面书写
d2d8ad87
 
罗翻 committed 6 years ago
607

罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
608 609 610 611 612
                    <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
613
                        android:layout_marginTop="@dimen/dp_15"
mReturn's avatar
工单优化
3e0b61f3
 
mReturn committed 5 years ago
614
                        android:layout_marginBottom="10dp"
罗翻's avatar
修改收取费用打开,但是不填写费用导致支付的bug
6477e57f
 
罗翻 committed 6 years ago
615
                        android:text="@string/lookforword_time"
罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
616 617
                        android:textColor="@color/tv_cl"
                        android:textSize="14sp" />
罗翻's avatar
android1.7页面书写
d2d8ad87
 
罗翻 committed 6 years ago
618

罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
619 620 621 622 623 624 625
                    <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"
mReturn's avatar
工单优化
3e0b61f3
 
mReturn committed 5 years ago
626
                        android:layout_marginBottom="10dp"
罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
627 628 629 630 631
                        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" />
                </RelativeLayout>
罗翻's avatar
android1.7页面书写
d2d8ad87
 
罗翻 committed 6 years ago
632 633

                <TextView
罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
634 635 636 637
                    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
638
                    android:text="@string/money_info"
mReturn's avatar
order
fcdebea6
 
mReturn committed 5 years ago
639
                    android:textColor="@color/cl_home_title_text_color"
mReturn's avatar
工单详情添加小绿人相关信息
be1f83c4
 
mReturn committed 4 years ago
640 641
                    android:textSize="14sp"
                    android:visibility="gone" />
罗翻's avatar
android1.7页面书写
d2d8ad87
 
罗翻 committed 6 years ago
642

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

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

罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
660 661 662 663 664 665 666
                    <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
667 668
                    <!--android:text="@{item.repairType == 1?@string/payer_baonei:@string/payer_baowai}"-->

罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
669
                </LinearLayout>
mReturn's avatar
order
fcdebea6
 
mReturn committed 5 years ago
670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700

                <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
701
                        android:text='@{!TextUtils.isEmpty(item.createdProvider)?item.createdProvider:@string/dayu_platform}'
mReturn's avatar
order
fcdebea6
 
mReturn committed 5 years ago
702 703 704 705 706
                        android:textColor="@color/cl_home_title_text_color"
                        android:textSize="14sp" />
                </LinearLayout>

                <LinearLayout
mReturn's avatar
工单详情添加小绿人相关信息
be1f83c4
 
mReturn committed 4 years ago
707
                    android:id="@+id/ll_bottom_price"
mReturn's avatar
order
fcdebea6
 
mReturn committed 5 years ago
708 709 710 711 712 713 714 715 716 717 718
                    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
719
                        android:text="@string/order_take_price"
mReturn's avatar
order
fcdebea6
 
mReturn committed 5 years ago
720 721 722 723 724 725 726 727
                        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
728
                        android:text='@{item.price+"元"}'
mReturn's avatar
fix bug
16d0953d
 
mReturn committed 5 years ago
729
                        android:textColor="@color/common_red"
mReturn's avatar
order
fcdebea6
 
mReturn committed 5 years ago
730
                        android:textSize="14sp" />
mReturn's avatar
工单详情添加小绿人相关信息
be1f83c4
 
mReturn committed 4 years ago
731

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

mReturn's avatar
fix bug
9cfc3748
 
mReturn committed 5 years ago
737 738 739 740 741 742 743 744 745 746 747 748 749
                    <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
750
                        android:layout_marginRight="50dp"
mReturn's avatar
fix bug
9cfc3748
 
mReturn committed 5 years ago
751 752 753
                        android:text='@{item.subsidyPrice+"元"}'
                        android:textColor="@color/common_red"
                        android:textSize="14sp" />
mReturn's avatar
order
fcdebea6
 
mReturn committed 5 years ago
754
                </LinearLayout>
mReturn's avatar
工单优化
3e0b61f3
 
mReturn committed 5 years ago
755

mReturn's avatar
order
fcdebea6
 
mReturn committed 5 years ago
756 757 758 759 760 761 762 763 764 765
                <TextView
                    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 6 years ago
766
            </LinearLayout>
罗翻's avatar
活体检测去除竖直检测判断
8464cc50
 
罗翻 committed 6 years ago
767 768 769 770 771 772 773 774 775 776 777
        </android.support.v4.widget.NestedScrollView>

        <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
778

mReturn's avatar
友盟推送&工单优化
5fb96c68
 
mReturn committed 5 years ago
779 780 781 782 783 784 785 786 787
        <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
788
    </LinearLayout>
罗翻's avatar
android1.7页面书写
d2d8ad87
 
罗翻 committed 6 years ago
789
</layout>