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_order_datails.xml
Find file
Normal viewHistoryPermalink
fragment_order_datails.xml 41 KB
Newer Older
yu's avatar
init
e37b6764
 
yu committed 7 years ago
1
<?xml version="1.0" encoding="utf-8"?>
罗翻's avatar
去除butternife,使用databingding
a0d4cd6a
 
罗翻 committed 7 years ago
2 3 4 5
<layout xmlns:android="http://schemas.android.com/apk/res/android">

    <data>

罗翻's avatar
将mvp替换成mvvm
d478f62a
 
罗翻 committed 7 years ago
6
        <import type="android.view.View" />
罗翻's avatar
去除butternife,使用databingding
a0d4cd6a
 
罗翻 committed 7 years ago
7

罗翻's avatar
将mvp替换成mvvm
d478f62a
 
罗翻 committed 7 years ago
8
        <import type="android.text.TextUtils" />
yu's avatar
init
e37b6764
 
yu committed 7 years ago
9

罗翻's avatar
去除butternife,使用databingding
a0d4cd6a
 
罗翻 committed 7 years ago
10 11
        <variable
            name="item"
罗翻's avatar
增加ordercenter和loctionlib
ae60479a
 
罗翻 committed 7 years ago
12
            type="com.dayu.order.api.protocol.OrderDetail" />
罗翻's avatar
去除butternife,使用databingding
a0d4cd6a
 
罗翻 committed 7 years ago
13 14
    </data>

罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 years ago
15
    <RelativeLayout
yu's avatar
init
e37b6764
 
yu committed 7 years ago
16
        android:layout_width="match_parent"
罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 years ago
17
        android:layout_height="match_parent">
yu's avatar
init
e37b6764
 
yu committed 7 years ago
18

罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 years ago
19
        <LinearLayout
yu's avatar
init
e37b6764
 
yu committed 7 years ago
20
            android:layout_width="match_parent"
罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 years ago
21 22
            android:layout_height="match_parent"
            android:orientation="vertical">
罗翻's avatar
1.0.2版本
43755525
 
罗翻 committed 7 years ago
23

罗翻's avatar
去除代码中的中文字
b61ecd3a
 
罗翻 committed 7 years ago
24
            <android.support.v4.widget.NestedScrollView
罗翻's avatar
订单流程修改
0f0b21cb
 
罗翻 committed 7 years ago
25
                android:layout_width="match_parent"
罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 years ago
26 27 28
                android:layout_height="0dp"
                android:layout_weight="1"
                android:scrollbars="none">
罗翻's avatar
去除butternife,使用databingding
a0d4cd6a
 
罗翻 committed 7 years ago
29 30 31

                <RelativeLayout
                    android:layout_width="match_parent"
罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 years ago
32
                    android:layout_height="match_parent">
罗翻's avatar
增加客户验收二维码页面
54b07d31
 
罗翻 committed 7 years ago
33 34 35 36

                    <RelativeLayout
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 years ago
37 38 39
                        android:layout_alignParentLeft="true"
                        android:layout_alignParentStart="true"
                        android:layout_alignParentTop="true">
罗翻's avatar
增加客户验收二维码页面
54b07d31
 
罗翻 committed 7 years ago
40 41

                        <TextView
罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 years ago
42 43
                            android:id="@+id/text_title_order"
                            android:layout_width="wrap_content"
罗翻's avatar
增加客户验收二维码页面
54b07d31
 
罗翻 committed 7 years ago
44
                            android:layout_height="wrap_content"
罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 years ago
45 46 47 48 49 50 51 52 53 54 55 56 57
                            android:layout_marginLeft="@dimen/dp_13"
                            android:layout_marginTop="@dimen/dp_10"
                            android:text="@string/tv_order_eg"
                            android:textColor="@color/cl_order_text_title"
                            android:textSize="@dimen/sp_13.3" />

                        <TextView
                            android:id="@+id/text_one"
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:layout_below="@id/text_title_order"
                            android:layout_marginLeft="@dimen/dp_13"
                            android:layout_marginTop="@dimen/dp_13"
罗翻's avatar
去除代码中的中文字
b61ecd3a
 
罗翻 committed 7 years ago
58
                            android:text="@string/order_num"
罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 years ago
59 60 61 62 63 64 65 66 67 68 69 70
                            android:textColor="@color/cl_order_text_one"
                            android:textSize="@dimen/sp_13.3" />

                        <TextView
                            android:id="@+id/tv_order_num"
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:layout_below="@id/text_title_order"
                            android:layout_marginLeft="@dimen/dp_10"
                            android:layout_marginTop="@dimen/dp_13"
                            android:layout_toRightOf="@id/text_one"
                            android:text='@{!TextUtils.isEmpty(item.orderNum)?item.orderNum:@string/no_data,default = @string/no_data}'
罗翻's avatar
增加客户验收二维码页面
54b07d31
 
罗翻 committed 7 years ago
71
                            android:textColor="@color/cl_home_title_text_color"
罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 years ago
72
                            android:textSize="@dimen/sp_13.3" />
罗翻's avatar
增加客户验收二维码页面
54b07d31
 
罗翻 committed 7 years ago
73 74

                        <TextView
罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 years ago
75 76
                            android:id="@+id/text_two"
                            android:layout_width="wrap_content"
罗翻's avatar
增加客户验收二维码页面
54b07d31
 
罗翻 committed 7 years ago
77
                            android:layout_height="wrap_content"
罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 years ago
78 79 80
                            android:layout_below="@id/text_one"
                            android:layout_marginLeft="@dimen/dp_13"
                            android:layout_marginTop="@dimen/dp_13"
罗翻's avatar
去除代码中的中文字
b61ecd3a
 
罗翻 committed 7 years ago
81
                            android:text="@string/order_state"
罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 years ago
82 83
                            android:textColor="@color/cl_order_text_one"
                            android:textSize="@dimen/sp_13.3" />
罗翻's avatar
增加客户验收二维码页面
54b07d31
 
罗翻 committed 7 years ago
84

罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 years ago
85 86 87 88 89 90 91 92 93 94
                        <TextView
                            android:id="@+id/tv_order_state"
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:layout_below="@id/text_one"
                            android:layout_marginLeft="@dimen/dp_10"
                            android:layout_marginTop="@dimen/dp_13"
                            android:layout_toRightOf="@id/text_two"
                            android:textColor="@color/cl_tab_read"
                            android:textSize="@dimen/sp_13.3" />
罗翻's avatar
增加客户验收二维码页面
54b07d31
 
罗翻 committed 7 years ago
95

罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 years ago
96 97 98 99 100 101 102
                        <TextView
                            android:id="@+id/tv_serve"
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:layout_below="@id/text_two"
                            android:layout_marginLeft="@dimen/dp_13"
                            android:layout_marginTop="@dimen/dp_13"
罗翻's avatar
去除代码中的中文字
b61ecd3a
 
罗翻 committed 7 years ago
103
                            android:text="@string/server_name"
罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 years ago
104 105 106 107 108 109 110 111 112 113 114 115 116 117
                            android:textColor="@color/cl_order_text_one"
                            android:textSize="@dimen/sp_13.3" />

                        <TextView
                            android:id="@+id/tv_serve_name"
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:layout_below="@id/text_two"
                            android:layout_marginLeft="@dimen/dp_10"
                            android:layout_marginTop="@dimen/dp_13"
                            android:layout_toRightOf="@id/tv_serve"
                            android:text='@{!TextUtils.isEmpty(item.spuName)?item.spuName:@string/no_data}'
                            android:textColor="@color/cl_home_title_text_color"
                            android:textSize="@dimen/sp_13.3" />
罗翻's avatar
增加客户验收二维码页面
54b07d31
 
罗翻 committed 7 years ago
118 119

                        <TextView
罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 years ago
120
                            android:id="@+id/text_three"
罗翻's avatar
增加客户验收二维码页面
54b07d31
 
罗翻 committed 7 years ago
121 122
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 years ago
123 124 125
                            android:layout_below="@id/tv_serve_name"
                            android:layout_marginLeft="@dimen/dp_13"
                            android:layout_marginTop="@dimen/dp_13"
罗翻's avatar
去除代码中的中文字
b61ecd3a
 
罗翻 committed 7 years ago
126
                            android:text="@string/prodcut"
罗翻's avatar
增加客户验收二维码页面
54b07d31
 
罗翻 committed 7 years ago
127 128 129
                            android:textColor="@color/cl_order_text_one"
                            android:textSize="@dimen/sp_13.3" />

罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 years ago
130 131 132 133 134 135 136 137 138 139 140
                        <TextView
                            android:id="@+id/tv_product"
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:layout_below="@id/tv_serve_name"
                            android:layout_marginLeft="@dimen/dp_10"
                            android:layout_marginTop="@dimen/dp_13"
                            android:layout_toRightOf="@id/text_three"
                            android:text='@{!TextUtils.isEmpty(item.categoryName)?item.categoryName:@string/no_data}'
                            android:textColor="@color/cl_home_title_text_color"
                            android:textSize="@dimen/sp_13.3" />
罗翻's avatar
增加客户验收二维码页面
54b07d31
 
罗翻 committed 7 years ago
141

罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 years ago
142 143
                        <TextView
                            android:id="@+id/text_foure"
罗翻's avatar
增加客户验收二维码页面
54b07d31
 
罗翻 committed 7 years ago
144 145
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 years ago
146
                            android:layout_below="@id/text_three"
罗翻's avatar
增加客户验收二维码页面
54b07d31
 
罗翻 committed 7 years ago
147
                            android:layout_marginLeft="@dimen/dp_13"
罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 years ago
148
                            android:layout_marginTop="@dimen/dp_13"
罗翻's avatar
去除代码中的中文字
b61ecd3a
 
罗翻 committed 7 years ago
149
                            android:text="@string/prodcut_type"
罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 years ago
150 151
                            android:textColor="@color/cl_order_text_one"
                            android:textSize="@dimen/sp_13.3" />
罗翻's avatar
增加客户验收二维码页面
54b07d31
 
罗翻 committed 7 years ago
152

罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 years ago
153 154 155 156 157 158 159 160 161 162 163
                        <TextView
                            android:id="@+id/tv_type"
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:layout_below="@id/text_three"
                            android:layout_marginLeft="@dimen/dp_10"
                            android:layout_marginTop="@dimen/dp_13"
                            android:layout_toRightOf="@id/text_foure"
                            android:text='@{!TextUtils.isEmpty(item.providerName)?item.providerName:@string/no_data}'
                            android:textColor="@color/cl_home_title_text_color"
                            android:textSize="@dimen/sp_13.3" />
罗翻's avatar
增加客户验收二维码页面
54b07d31
 
罗翻 committed 7 years ago
164

罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 years ago
165 166 167 168 169 170
                        <TextView
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:layout_below="@id/tv_type"
                            android:layout_marginLeft="@dimen/dp_13"
                            android:layout_marginTop="@dimen/dp_13"
罗翻's avatar
去除代码中的中文字
b61ecd3a
 
罗翻 committed 7 years ago
171
                            android:text="@string/door_time"
罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 years ago
172 173
                            android:textColor="@color/cl_order_text_one"
                            android:textSize="@dimen/sp_13.3" />
罗翻's avatar
增加客户验收二维码页面
54b07d31
 
罗翻 committed 7 years ago
174

罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 years ago
175 176 177 178 179 180 181 182 183 184 185
                        <TextView
                            android:id="@+id/tv_door_time"
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:layout_below="@id/tv_type"
                            android:layout_marginLeft="@dimen/dp_10"
                            android:layout_marginTop="@dimen/dp_13"
                            android:layout_toRightOf="@id/text_foure"
                            android:text='@{!TextUtils.isEmpty(item.confirmDoorTime)?item.confirmDoorTime:@string/no_data}'
                            android:textColor="@color/cl_home_title_text_color"
                            android:textSize="@dimen/sp_13.3" />
罗翻's avatar
去除butternife,使用databingding
a0d4cd6a
 
罗翻 committed 7 years ago
186

罗翻's avatar
增加客户验收二维码页面
54b07d31
 
罗翻 committed 7 years ago
187

罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 years ago
188 189 190 191 192 193 194
                        <TextView
                            android:id="@+id/textView2"
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:layout_below="@id/tv_door_time"
                            android:layout_marginLeft="@dimen/dp_13"
                            android:layout_marginTop="@dimen/dp_13"
罗翻's avatar
去除代码中的中文字
b61ecd3a
 
罗翻 committed 7 years ago
195
                            android:text="@string/order_remark"
罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 years ago
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224
                            android:textColor="@color/cl_order_text_one"
                            android:textSize="@dimen/sp_13.3" />

                        <RelativeLayout
                            android:id="@+id/rl_info_detail"
                            android:layout_width="match_parent"
                            android:layout_height="wrap_content"
                            android:layout_below="@id/tv_door_time"
                            android:layout_marginLeft="@dimen/dp_10"
                            android:layout_marginTop="@dimen/dp_13"
                            android:layout_toRightOf="@id/text_foure">

                            <TextView
                                android:id="@+id/tv_order_rmark"
                                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/tv_order_rmark"
                                android:gravity="center_horizontal"
罗翻's avatar
去除代码中的中文字
b61ecd3a
 
罗翻 committed 7 years ago
225
                                android:text="@string/look_more"
罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 years ago
226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244
                                android:textColor="@color/cl_receiving_order_item_data"
                                android:textSize="13.3sp"
                                android:visibility="gone" />

                        </RelativeLayout>

                        <LinearLayout
                            android:id="@+id/ll_fujian"
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:layout_below="@id/rl_info_detail"
                            android:layout_marginLeft="@dimen/dp_13"
                            android:layout_marginTop="@dimen/dp_13"
                            android:orientation="horizontal">

                            <TextView
                                android:id="@+id/tv_fujian"
                                android:layout_width="wrap_content"
                                android:layout_height="wrap_content"
罗翻's avatar
去除代码中的中文字
b61ecd3a
 
罗翻 committed 7 years ago
245
                                android:text="@string/order_attachment"
罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 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
                                android:textColor="@color/cl_order_text_one"
                                android:textSize="@dimen/sp_13.3" />


                            <android.support.v7.widget.RecyclerView
                                android:id="@+id/rl_accessories"
                                android:layout_width="wrap_content"
                                android:layout_height="wrap_content"
                                android:layout_marginLeft="@dimen/dp_13"
                                android:layout_toRightOf="@id/tv_fujian">

                            </android.support.v7.widget.RecyclerView>
                        </LinearLayout>


                        <ImageView
                            android:id="@+id/line_one"
                            android:layout_width="@dimen/dp_333"
                            android:layout_height="@dimen/dp_0.3"
                            android:layout_below="@id/ll_fujian"
                            android:layout_centerHorizontal="true"
                            android:layout_marginTop="@dimen/dp_12"
                            android:background="@color/cl_order_item_line_bg" />
罗翻's avatar
增加客户验收二维码页面
54b07d31
 
罗翻 committed 7 years ago
269 270

                        <TextView
罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 years ago
271
                            android:id="@+id/two_text_one"
罗翻's avatar
增加客户验收二维码页面
54b07d31
 
罗翻 committed 7 years ago
272 273
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 years ago
274
                            android:layout_below="@id/line_one"
罗翻's avatar
增加客户验收二维码页面
54b07d31
 
罗翻 committed 7 years ago
275 276
                            android:layout_marginLeft="@dimen/dp_13"
                            android:layout_marginTop="@dimen/dp_10"
罗翻's avatar
去除代码中的中文字
b61ecd3a
 
罗翻 committed 7 years ago
277
                            android:text="@string/customer_info"
罗翻's avatar
增加客户验收二维码页面
54b07d31
 
罗翻 committed 7 years ago
278 279 280 281
                            android:textColor="@color/cl_home_title_text_color"
                            android:textSize="@dimen/sp_13.3" />

                        <TextView
罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 years ago
282
                            android:id="@+id/two_text_two"
罗翻's avatar
增加客户验收二维码页面
54b07d31
 
罗翻 committed 7 years ago
283 284
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 years ago
285
                            android:layout_below="@id/two_text_one"
罗翻's avatar
增加客户验收二维码页面
54b07d31
 
罗翻 committed 7 years ago
286 287
                            android:layout_marginLeft="@dimen/dp_13"
                            android:layout_marginTop="@dimen/dp_13"
罗翻's avatar
去除代码中的中文字
b61ecd3a
 
罗翻 committed 7 years ago
288
                            android:text="@string/customer_type"
罗翻's avatar
增加客户验收二维码页面
54b07d31
 
罗翻 committed 7 years ago
289 290 291 292
                            android:textColor="@color/cl_order_text_one"
                            android:textSize="@dimen/sp_13.3" />

                        <TextView
罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 years ago
293
                            android:id="@+id/tv_customer_type"
罗翻's avatar
增加客户验收二维码页面
54b07d31
 
罗翻 committed 7 years ago
294 295
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 years ago
296
                            android:layout_below="@id/two_text_one"
罗翻's avatar
增加客户验收二维码页面
54b07d31
 
罗翻 committed 7 years ago
297 298
                            android:layout_marginLeft="@dimen/dp_10"
                            android:layout_marginTop="@dimen/dp_13"
罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 years ago
299 300
                            android:layout_toRightOf="@id/two_text_two"
                            android:text="@{item.customerType == 1?@string/personal_customer:@string/enterprise_customer}"
罗翻's avatar
增加客户验收二维码页面
54b07d31
 
罗翻 committed 7 years ago
301 302 303 304
                            android:textColor="@color/cl_home_title_text_color"
                            android:textSize="@dimen/sp_13.3" />

                        <TextView
罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 years ago
305
                            android:id="@+id/two_text_three"
罗翻's avatar
增加客户验收二维码页面
54b07d31
 
罗翻 committed 7 years ago
306 307
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 years ago
308
                            android:layout_below="@id/two_text_two"
罗翻's avatar
增加客户验收二维码页面
54b07d31
 
罗翻 committed 7 years ago
309 310
                            android:layout_marginLeft="@dimen/dp_13"
                            android:layout_marginTop="@dimen/dp_13"
罗翻's avatar
去除代码中的中文字
b61ecd3a
 
罗翻 committed 7 years ago
311
                            android:text="@string/customer_name"
罗翻's avatar
增加客户验收二维码页面
54b07d31
 
罗翻 committed 7 years ago
312 313 314 315
                            android:textColor="@color/cl_order_text_one"
                            android:textSize="@dimen/sp_13.3" />

                        <TextView
罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 years ago
316
                            android:id="@+id/tv_customer_name"
罗翻's avatar
增加客户验收二维码页面
54b07d31
 
罗翻 committed 7 years ago
317 318
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 years ago
319
                            android:layout_below="@id/tv_customer_type"
罗翻's avatar
增加客户验收二维码页面
54b07d31
 
罗翻 committed 7 years ago
320 321
                            android:layout_marginLeft="@dimen/dp_10"
                            android:layout_marginTop="@dimen/dp_13"
罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 years ago
322 323
                            android:layout_toRightOf="@id/two_text_three"
                            android:text='@{!TextUtils.isEmpty(item.customerName)?item.customerName:@string/no_data}'
罗翻's avatar
增加客户验收二维码页面
54b07d31
 
罗翻 committed 7 years ago
324 325 326
                            android:textColor="@color/cl_home_title_text_color"
                            android:textSize="@dimen/sp_13.3" />

罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 years ago
327 328 329 330 331 332 333
                        <TextView
                            android:id="@+id/two_text_four"
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:layout_below="@id/two_text_three"
                            android:layout_marginLeft="@dimen/dp_13"
                            android:layout_marginTop="@dimen/dp_13"
罗翻's avatar
去除代码中的中文字
b61ecd3a
 
罗翻 committed 7 years ago
334
                            android:text="@string/tv_two_text_three"
罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 years ago
335 336 337 338 339 340 341 342 343 344 345 346 347 348
                            android:textColor="@color/cl_order_text_one"
                            android:textSize="@dimen/sp_13.3" />

                        <TextView
                            android:id="@+id/tv_contact_mode"
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:layout_below="@id/tv_customer_name"
                            android:layout_marginLeft="@dimen/dp_10"
                            android:layout_marginTop="@dimen/dp_13"
                            android:layout_toRightOf="@id/two_text_four"
                            android:text='@{!TextUtils.isEmpty(item.customerMobile)?item.customerMobile:@string/no_data}'
                            android:textColor="@color/cl_home_title_text_color"
                            android:textSize="@dimen/sp_13.3" />
罗翻's avatar
增加客户验收二维码页面
54b07d31
 
罗翻 committed 7 years ago
349 350

                        <TextView
罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 years ago
351
                            android:id="@+id/two_text_five"
罗翻's avatar
增加客户验收二维码页面
54b07d31
 
罗翻 committed 7 years ago
352 353
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 years ago
354
                            android:layout_below="@id/two_text_four"
罗翻's avatar
增加客户验收二维码页面
54b07d31
 
罗翻 committed 7 years ago
355 356
                            android:layout_marginLeft="@dimen/dp_13"
                            android:layout_marginTop="@dimen/dp_13"
罗翻's avatar
去除代码中的中文字
b61ecd3a
 
罗翻 committed 7 years ago
357
                            android:text="@string/tv_two_text_foure"
罗翻's avatar
增加客户验收二维码页面
54b07d31
 
罗翻 committed 7 years ago
358 359 360 361
                            android:textColor="@color/cl_order_text_one"
                            android:textSize="@dimen/sp_13.3" />

                        <TextView
罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 years ago
362
                            android:id="@+id/tv_customer_address"
罗翻's avatar
增加客户验收二维码页面
54b07d31
 
罗翻 committed 7 years ago
363 364
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 years ago
365
                            android:layout_below="@id/tv_contact_mode"
罗翻's avatar
增加客户验收二维码页面
54b07d31
 
罗翻 committed 7 years ago
366 367
                            android:layout_marginLeft="@dimen/dp_10"
                            android:layout_marginTop="@dimen/dp_13"
罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 years ago
368 369 370 371
                            android:layout_toRightOf="@id/two_text_five"
                            android:ellipsize="end"
                            android:maxLines="2"
                            android:text='@{item.provinceName+item.cityName+item.districtName+item.address}'
罗翻's avatar
增加客户验收二维码页面
54b07d31
 
罗翻 committed 7 years ago
372 373 374 375
                            android:textColor="@color/cl_home_title_text_color"
                            android:textSize="@dimen/sp_13.3" />

                        <TextView
罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 years ago
376
                            android:id="@+id/tv_forward_time"
罗翻's avatar
增加客户验收二维码页面
54b07d31
 
罗翻 committed 7 years ago
377 378
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 years ago
379
                            android:layout_below="@id/two_text_five"
罗翻's avatar
增加客户验收二维码页面
54b07d31
 
罗翻 committed 7 years ago
380 381
                            android:layout_marginLeft="@dimen/dp_13"
                            android:layout_marginTop="@dimen/dp_13"
罗翻's avatar
去除代码中的中文字
b61ecd3a
 
罗翻 committed 7 years ago
382
                            android:text="@string/lookforword_time"
罗翻's avatar
增加客户验收二维码页面
54b07d31
 
罗翻 committed 7 years ago
383 384 385 386
                            android:textColor="@color/cl_order_text_one"
                            android:textSize="@dimen/sp_13.3" />

                        <TextView
罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 years ago
387
                            android:id="@+id/tv_forward_time_detail"
罗翻's avatar
增加客户验收二维码页面
54b07d31
 
罗翻 committed 7 years ago
388 389
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 years ago
390
                            android:layout_below="@id/two_text_five"
罗翻's avatar
增加客户验收二维码页面
54b07d31
 
罗翻 committed 7 years ago
391 392
                            android:layout_marginLeft="@dimen/dp_10"
                            android:layout_marginTop="@dimen/dp_13"
罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 years ago
393 394
                            android:layout_toRightOf="@id/text_foure"
                            android:text='@{!TextUtils.isEmpty(item.appointmentTime)?item.appointmentTime:@string/no_data}'
罗翻's avatar
增加客户验收二维码页面
54b07d31
 
罗翻 committed 7 years ago
395 396 397
                            android:textColor="@color/cl_home_title_text_color"
                            android:textSize="@dimen/sp_13.3" />

罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 years ago
398 399 400 401 402 403 404 405 406
                        <ImageView
                            android:id="@+id/line_two"
                            android:layout_width="@dimen/dp_333"
                            android:layout_height="@dimen/dp_0.3"
                            android:layout_below="@id/tv_forward_time_detail"
                            android:layout_centerHorizontal="true"
                            android:layout_marginTop="@dimen/dp_12"
                            android:background="@color/cl_order_item_line_bg" />

罗翻's avatar
增加客户验收二维码页面
54b07d31
 
罗翻 committed 7 years ago
407
                        <TextView
罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 years ago
408
                            android:id="@+id/three_text_one"
罗翻's avatar
增加客户验收二维码页面
54b07d31
 
罗翻 committed 7 years ago
409 410
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 years ago
411 412 413
                            android:layout_below="@id/line_two"
                            android:layout_marginLeft="@dimen/dp_13"
                            android:layout_marginTop="@dimen/dp_10"
罗翻's avatar
去除代码中的中文字
b61ecd3a
 
罗翻 committed 7 years ago
414
                            android:text="@string/prodcut_info"
罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 years ago
415 416 417 418 419 420 421 422
                            android:textColor="@color/cl_home_title_text_color"
                            android:textSize="@dimen/sp_13.3" />

                        <TextView
                            android:id="@+id/three_text_two"
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:layout_below="@id/three_text_one"
罗翻's avatar
增加客户验收二维码页面
54b07d31
 
罗翻 committed 7 years ago
423 424
                            android:layout_marginLeft="@dimen/dp_13"
                            android:layout_marginTop="@dimen/dp_13"
罗翻's avatar
去除代码中的中文字
b61ecd3a
 
罗翻 committed 7 years ago
425
                            android:text="@string/prodcut_brand"
罗翻's avatar
增加客户验收二维码页面
54b07d31
 
罗翻 committed 7 years ago
426 427 428 429
                            android:textColor="@color/cl_order_text_one"
                            android:textSize="@dimen/sp_13.3" />

                        <TextView
罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 years ago
430
                            android:id="@+id/tv_brand"
罗翻's avatar
增加客户验收二维码页面
54b07d31
 
罗翻 committed 7 years ago
431 432
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 years ago
433 434
                            android:layout_alignBaseline="@+id/three_text_two"
                            android:layout_alignBottom="@+id/three_text_two"
罗翻's avatar
增加客户验收二维码页面
54b07d31
 
罗翻 committed 7 years ago
435 436
                            android:layout_marginLeft="@dimen/dp_10"
                            android:layout_marginTop="@dimen/dp_13"
罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 years ago
437 438
                            android:layout_toRightOf="@id/three_text_two"
                            android:text='@{!TextUtils.isEmpty(item.brandName)?item.brandName:@string/no_data}'
罗翻's avatar
增加客户验收二维码页面
54b07d31
 
罗翻 committed 7 years ago
439 440 441 442
                            android:textColor="@color/cl_home_title_text_color"
                            android:textSize="@dimen/sp_13.3" />

                        <TextView
罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 years ago
443
                            android:id="@+id/three_two_two"
罗翻's avatar
增加客户验收二维码页面
54b07d31
 
罗翻 committed 7 years ago
444 445
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 years ago
446
                            android:layout_below="@id/three_text_two"
罗翻's avatar
增加客户验收二维码页面
54b07d31
 
罗翻 committed 7 years ago
447 448
                            android:layout_marginLeft="@dimen/dp_13"
                            android:layout_marginTop="@dimen/dp_13"
罗翻's avatar
去除代码中的中文字
b61ecd3a
 
罗翻 committed 7 years ago
449
                            android:text="@string/prodcut_num"
罗翻's avatar
增加客户验收二维码页面
54b07d31
 
罗翻 committed 7 years ago
450 451 452 453
                            android:textColor="@color/cl_order_text_one"
                            android:textSize="@dimen/sp_13.3" />

                        <TextView
罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 years ago
454
                            android:id="@+id/tv_model"
罗翻's avatar
增加客户验收二维码页面
54b07d31
 
罗翻 committed 7 years ago
455 456
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 years ago
457
                            android:layout_below="@id/tv_brand"
罗翻's avatar
增加客户验收二维码页面
54b07d31
 
罗翻 committed 7 years ago
458 459
                            android:layout_marginLeft="@dimen/dp_10"
                            android:layout_marginTop="@dimen/dp_13"
罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 years ago
460 461
                            android:layout_toRightOf="@id/three_two_two"
                            android:text='@{!TextUtils.isEmpty(item.productModel)?item.productModel:@string/no_data}'
罗翻's avatar
增加客户验收二维码页面
54b07d31
 
罗翻 committed 7 years ago
462 463 464 465 466
                            android:textColor="@color/cl_home_title_text_color"
                            android:textSize="@dimen/sp_13.3" />


                        <TextView
罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 years ago
467 468 469 470 471 472
                            android:id="@+id/three_four_four"
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:layout_below="@id/three_two_two"
                            android:layout_marginLeft="@dimen/dp_13"
                            android:layout_marginTop="@dimen/dp_13"
罗翻's avatar
去除代码中的中文字
b61ecd3a
 
罗翻 committed 7 years ago
473
                            android:text="@string/quality_assurance_info"
罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 years ago
474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494
                            android:textColor="@color/cl_order_text_one"
                            android:textSize="@dimen/sp_13.3" />

                        <TextView
                            android:id="@+id/tv_warranty_info"
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:layout_below="@id/tv_model"
                            android:layout_marginLeft="@dimen/dp_10"
                            android:layout_marginTop="@dimen/dp_13"
                            android:layout_toRightOf="@id/three_four_four"
                            android:text="@{item.repairType == 1?@string/honai:@string/warranty}"
                            android:textColor="@color/cl_home_title_text_color"
                            android:textSize="@dimen/sp_13.3" />

                        <TextView
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:layout_below="@id/three_four_four"
                            android:layout_marginLeft="@dimen/dp_13"
                            android:layout_marginTop="@dimen/dp_13"
罗翻's avatar
去除代码中的中文字
b61ecd3a
 
罗翻 committed 7 years ago
495
                            android:text="@string/sn_num"
罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 years ago
496 497 498 499 500
                            android:textColor="@color/cl_order_text_one"
                            android:textSize="@dimen/sp_13.3" />

                        <TextView
                            android:id="@+id/tv_sn_code"
罗翻's avatar
增加客户验收二维码页面
54b07d31
 
罗翻 committed 7 years ago
501 502
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 years ago
503 504 505 506 507 508 509 510 511 512 513 514 515
                            android:layout_below="@id/three_four_four"
                            android:layout_marginLeft="@dimen/dp_10"
                            android:layout_marginTop="@dimen/dp_13"
                            android:layout_toRightOf="@id/three_four_four"
                            android:text='@{!TextUtils.isEmpty(item.sn)?item.sn:@string/no_data}'
                            android:textColor="@color/cl_home_title_text_color"
                            android:textSize="@dimen/sp_13.3" />

                        <ImageView
                            android:id="@+id/line_three"
                            android:layout_width="@dimen/dp_333"
                            android:layout_height="@dimen/dp_0.3"
                            android:layout_below="@id/tv_sn_code"
罗翻's avatar
增加客户验收二维码页面
54b07d31
 
罗翻 committed 7 years ago
516
                            android:layout_centerHorizontal="true"
罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 years ago
517 518 519 520 521 522 523 524 525 526 527 528 529 530 531
                            android:layout_marginTop="@dimen/dp_12"
                            android:background="@color/cl_order_item_line_bg" />

                        <RelativeLayout
                            android:id="@+id/rl_have_charge"
                            android:layout_width="match_parent"
                            android:layout_height="wrap_content"
                            android:layout_below="@id/line_three">

                            <TextView
                                android:id="@+id/four_text_one"
                                android:layout_width="wrap_content"
                                android:layout_height="wrap_content"
                                android:layout_marginLeft="@dimen/dp_13"
                                android:layout_marginTop="@dimen/dp_10"
罗翻's avatar
去除代码中的中文字
b61ecd3a
 
罗翻 committed 7 years ago
532
                                android:text="@string/charge_record"
罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 years ago
533 534 535 536 537 538 539 540 541 542
                                android:textColor="@color/cl_home_title_text_color"
                                android:textSize="@dimen/sp_13.3" />

                            <TextView
                                android:id="@+id/four_text_two"
                                android:layout_width="wrap_content"
                                android:layout_height="wrap_content"
                                android:layout_below="@id/four_text_one"
                                android:layout_marginLeft="@dimen/dp_13"
                                android:layout_marginTop="@dimen/dp_13"
罗翻's avatar
去除代码中的中文字
b61ecd3a
 
罗翻 committed 7 years ago
543
                                android:text="@string/total_money"
罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 years ago
544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565
                                android:textColor="@color/cl_order_text_one"
                                android:textSize="@dimen/sp_13.3" />

                            <TextView
                                android:id="@+id/tv_total_money"
                                android:layout_width="wrap_content"
                                android:layout_height="wrap_content"
                                android:layout_below="@id/four_text_one"
                                android:layout_marginLeft="@dimen/dp_10"
                                android:layout_marginTop="@dimen/dp_13"
                                android:layout_toRightOf="@id/four_text_two"
                                android:text='@{item.totalPrice == null?(@string/zero_money):item.totalPrice+(@string/money)}'
                                android:textColor="@color/cl_home_title_text_color"
                                android:textSize="@dimen/sp_13.3" />

                            <TextView
                                android:id="@+id/four_text_three"
                                android:layout_width="wrap_content"
                                android:layout_height="wrap_content"
                                android:layout_below="@id/four_text_two"
                                android:layout_marginLeft="@dimen/dp_13"
                                android:layout_marginTop="@dimen/dp_13"
罗翻's avatar
去除代码中的中文字
b61ecd3a
 
罗翻 committed 7 years ago
566
                                android:text="@string/door_money"
罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 years ago
567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589
                                android:textColor="@color/cl_order_text_one"
                                android:textSize="@dimen/sp_13.3" />

                            <TextView
                                android:id="@+id/tv_door_price"
                                android:layout_width="wrap_content"
                                android:layout_height="wrap_content"
                                android:layout_below="@id/tv_total_money"
                                android:layout_marginLeft="@dimen/dp_10"
                                android:layout_marginTop="@dimen/dp_13"
                                android:layout_toRightOf="@id/four_text_three"
                                android:text='@{item.doorPrice == null?(@string/zero_money):item.doorPrice+(@string/money)}'
                                android:textColor="@color/cl_home_title_text_color"
                                android:textSize="@dimen/sp_13.3" />


                            <TextView
                                android:id="@+id/four_text_five"
                                android:layout_width="wrap_content"
                                android:layout_height="wrap_content"
                                android:layout_below="@id/four_text_three"
                                android:layout_marginLeft="@dimen/dp_13"
                                android:layout_marginTop="@dimen/dp_13"
罗翻's avatar
去除代码中的中文字
b61ecd3a
 
罗翻 committed 7 years ago
590
                                android:text="@string/server_money"
罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 years ago
591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612
                                android:textColor="@color/cl_order_text_one"
                                android:textSize="@dimen/sp_13.3" />

                            <TextView
                                android:id="@+id/tv_serve_price"
                                android:layout_width="wrap_content"
                                android:layout_height="wrap_content"
                                android:layout_below="@id/tv_door_price"
                                android:layout_marginLeft="@dimen/dp_10"
                                android:layout_marginTop="@dimen/dp_13"
                                android:layout_toRightOf="@id/four_text_five"
                                android:text='@{item.servicePrice == null?(@string/zero_money):item.servicePrice+(@string/money)}'
                                android:textColor="@color/cl_home_title_text_color"
                                android:textSize="@dimen/sp_13.3" />

                            <TextView
                                android:id="@+id/four_text_seven"
                                android:layout_width="wrap_content"
                                android:layout_height="wrap_content"
                                android:layout_below="@id/four_text_five"
                                android:layout_marginLeft="@dimen/dp_13"
                                android:layout_marginTop="@dimen/dp_13"
罗翻's avatar
去除代码中的中文字
b61ecd3a
 
罗翻 committed 7 years ago
613
                                android:text="@string/material_money"
罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 years ago
614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635
                                android:textColor="@color/cl_order_text_one"
                                android:textSize="@dimen/sp_13.3" />

                            <TextView
                                android:id="@+id/tv_material_price"
                                android:layout_width="wrap_content"
                                android:layout_height="wrap_content"
                                android:layout_below="@id/tv_serve_price"
                                android:layout_marginLeft="@dimen/dp_10"
                                android:layout_marginTop="@dimen/dp_13"
                                android:layout_toRightOf="@id/four_text_seven"
                                android:text='@{item.materialCost == null?(@string/zero_money):item.materialCost+(@string/money)}'
                                android:textColor="@color/cl_home_title_text_color"
                                android:textSize="@dimen/sp_13.3" />

                            <TextView
                                android:id="@+id/four_text_nine"
                                android:layout_width="wrap_content"
                                android:layout_height="wrap_content"
                                android:layout_below="@id/four_text_seven"
                                android:layout_marginLeft="@dimen/dp_13"
                                android:layout_marginTop="@dimen/dp_13"
罗翻's avatar
去除代码中的中文字
b61ecd3a
 
罗翻 committed 7 years ago
636
                                android:text="@string/other_money"
罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 years ago
637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658
                                android:textColor="@color/cl_order_text_one"
                                android:textSize="@dimen/sp_13.3" />

                            <TextView
                                android:id="@+id/tv_other_price"
                                android:layout_width="wrap_content"
                                android:layout_height="wrap_content"
                                android:layout_below="@id/tv_material_price"
                                android:layout_marginLeft="@dimen/dp_10"
                                android:layout_marginTop="@dimen/dp_13"
                                android:layout_toRightOf="@id/four_text_nine"
                                android:text='@{item.otherPrice == null?(@string/zero_money):item.otherPrice+(@string/money)}'
                                android:textColor="@color/cl_home_title_text_color"
                                android:textSize="@dimen/sp_13.3" />

                            <TextView
                                android:id="@+id/four_text_ten"
                                android:layout_width="wrap_content"
                                android:layout_height="wrap_content"
                                android:layout_below="@id/four_text_nine"
                                android:layout_marginLeft="@dimen/dp_13"
                                android:layout_marginTop="@dimen/dp_13"
罗翻's avatar
去除代码中的中文字
b61ecd3a
 
罗翻 committed 7 years ago
659
                                android:text="@string/remark"
罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 years ago
660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688
                                android:textColor="@color/cl_order_text_one"
                                android:textSize="@dimen/sp_13.3" />

                            <TextView
                                android:id="@+id/tv_remarks"
                                android:layout_width="wrap_content"
                                android:layout_height="wrap_content"
                                android:layout_below="@id/tv_other_price"
                                android:layout_marginLeft="@dimen/dp_10"
                                android:layout_marginTop="@dimen/dp_13"
                                android:layout_toRightOf="@id/four_text_ten"
                                android:ellipsize="end"
                                android:maxLines="2"
                                android:text='@{!TextUtils.isEmpty(item.doorPriceComment)?item.doorPriceComment:@string/no_data}'
                                android:textColor="@color/cl_home_title_text_color"
                                android:textSize="@dimen/sp_13.3" />
                        </RelativeLayout>

                        <RelativeLayout
                            android:id="@+id/rl_no_charge"
                            android:layout_width="match_parent"
                            android:layout_height="match_parent"
                            android:layout_below="@id/line_three">

                            <TextView
                                android:layout_width="wrap_content"
                                android:layout_height="wrap_content"
                                android:layout_centerHorizontal="true"
                                android:layout_marginTop="@dimen/dp_20"
罗翻's avatar
去除代码中的中文字
b61ecd3a
 
罗翻 committed 7 years ago
689
                                android:text="@string/no_charge_record"
罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 years ago
690 691 692 693
                                android:textColor="@color/cl_black"
                                android:textSize="@dimen/sp_16"
                                android:textStyle="bold" />
                        </RelativeLayout>
罗翻's avatar
增加客户验收二维码页面
54b07d31
 
罗翻 committed 7 years ago
694
                    </RelativeLayout>
罗翻's avatar
去除butternife,使用databingding
a0d4cd6a
 
罗翻 committed 7 years ago
695
                </RelativeLayout>
罗翻's avatar
去除代码中的中文字
b61ecd3a
 
罗翻 committed 7 years ago
696
            </android.support.v4.widget.NestedScrollView>
罗翻's avatar
增加客户验收二维码页面
54b07d31
 
罗翻 committed 7 years ago
697

罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 years ago
698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716
            <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" />
        </LinearLayout>

        <LinearLayout
            android:id="@+id/ll_server_instruction"
            android:layout_width="60dp"
            android:layout_height="60dp"
            android:layout_alignParentRight="true"
            android:layout_centerVertical="true"
            android:layout_marginRight="10dp"
            android:background="@drawable/tab_blue_react"
罗翻's avatar
增加客户验收二维码页面
54b07d31
 
罗翻 committed 7 years ago
717
            android:gravity="center"
罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 years ago
718 719 720 721 722
            android:orientation="vertical">

            <ImageView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
罗翻's avatar
增加ordercenter和loctionlib
ae60479a
 
罗翻 committed 7 years ago
723
                android:src="@drawable/icon_order_server" />
罗翻's avatar
工单详情增加跳转到服务说明
d61a1969
 
罗翻 committed 7 years ago
724 725 726 727 728 729 730 731 732 733

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginTop="4dp"
                android:text="@string/order_instruction"
                android:textColor="@color/white"
                android:textSize="12sp" />
        </LinearLayout>
    </RelativeLayout>
罗翻's avatar
去除butternife,使用databingding
a0d4cd6a
 
罗翻 committed 7 years ago
734
</layout>