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
  • item_apply_part_layout.xml
Find file
Normal viewHistoryPermalink
item_apply_part_layout.xml 17 KB
Newer Older
罗翻's avatar
增加服务说明页面,去除basepresenter中的mActivity
3a16a783
 
罗翻 committed 7 years ago
1 2 3 4 5
<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android">

    <LinearLayout
        android:layout_width="match_parent"
罗翻's avatar
增加备件列表,物流信息等页面
0338f017
 
罗翻 committed 7 years ago
6 7
        android:layout_height="wrap_content"
        android:layout_marginBottom="@dimen/dp_10"
罗翻's avatar
增加寄回备件页面
24f6b543
 
罗翻 committed 7 years ago
8
        android:background="@color/cl_white"
罗翻's avatar
增加服务说明页面,去除basepresenter中的mActivity
3a16a783
 
罗翻 committed 7 years ago
9 10
        android:orientation="vertical">

罗翻's avatar
增加备件列表,物流信息等页面
0338f017
 
罗翻 committed 7 years ago
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="46dp"
            android:layout_marginLeft="15dp"
            android:layout_marginRight="15dp">

            <TextView
                android:id="@+id/tv_part_name"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_centerVertical="true"
                android:textColor="@color/default_text_color"
                android:textSize="16sp" />

            <TextView
                android:id="@+id/tv_part_state"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentRight="true"
                android:layout_centerVertical="true"
                android:textColor="@color/cl_home_button"
                android:textSize="15sp" />
        </RelativeLayout>

        <View
            android:layout_width="match_parent"
            android:layout_height="1dp"
            android:layout_marginLeft="@dimen/dp_15"
            android:background="@color/line_color" />

        <LinearLayout
罗翻's avatar
增加寄回备件页面
24f6b543
 
罗翻 committed 7 years ago
42
            android:id="@+id/ll_apply_info"
罗翻's avatar
增加备件列表,物流信息等页面
0338f017
 
罗翻 committed 7 years ago
43 44 45 46 47 48 49 50 51 52 53 54 55 56
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginLeft="@dimen/dp_15"
            android:layout_marginRight="@dimen/dp_15"
            android:layout_marginTop="@dimen/dp_14"
            android:orientation="vertical">

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginBottom="@dimen/dp_12"
                android:orientation="horizontal">

                <TextView
罗翻's avatar
增加备件列表,物流信息等页面
5db0dd03
 
罗翻 committed 7 years ago
57
                    android:layout_width="75dp"
罗翻's avatar
增加备件列表,物流信息等页面
0338f017
 
罗翻 committed 7 years ago
58 59 60 61 62 63 64 65 66
                    android:layout_height="wrap_content"
                    android:text="@string/tv_apply_instruction"
                    android:textColor="@color/default_editext_color"
                    android:textSize="14sp" />

                <TextView
                    android:id="@+id/tv_apply_instruction"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
罗翻's avatar
增加备件列表,物流信息等页面
5db0dd03
 
罗翻 committed 7 years ago
67
                    android:layout_marginLeft="5dp"
罗翻's avatar
增加备件列表,物流信息等页面
0338f017
 
罗翻 committed 7 years ago
68
                    android:textColor="@color/default_text_color"
罗翻's avatar
增加备件列表,物流信息等页面
320deecd
 
罗翻 committed 7 years ago
69 70
                    android:ellipsize="end"
                    android:maxLines="5"
罗翻's avatar
增加备件列表,物流信息等页面
0338f017
 
罗翻 committed 7 years ago
71 72 73 74 75 76 77 78 79 80
                    android:textSize="14sp" />
            </LinearLayout>

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginBottom="@dimen/dp_12"
                android:orientation="horizontal">

                <TextView
罗翻's avatar
增加备件列表,物流信息等页面
5db0dd03
 
罗翻 committed 7 years ago
81
                    android:layout_width="75dp"
罗翻's avatar
增加备件列表,物流信息等页面
0338f017
 
罗翻 committed 7 years ago
82 83 84 85 86 87 88 89 90
                    android:layout_height="wrap_content"
                    android:text="@string/tv_apply_name"
                    android:textColor="@color/default_editext_color"
                    android:textSize="14sp" />

                <TextView
                    android:id="@+id/tv_apply_name"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
罗翻's avatar
增加备件列表,物流信息等页面
5db0dd03
 
罗翻 committed 7 years ago
91
                    android:layout_marginLeft="5dp"
罗翻's avatar
增加备件列表,物流信息等页面
0338f017
 
罗翻 committed 7 years ago
92 93 94 95 96 97 98 99 100 101 102
                    android:textColor="@color/default_text_color"
                    android:textSize="14sp" />
            </LinearLayout>

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginBottom="@dimen/dp_12"
                android:orientation="horizontal">

                <TextView
罗翻's avatar
增加备件列表,物流信息等页面
5db0dd03
 
罗翻 committed 7 years ago
103
                    android:layout_width="75dp"
罗翻's avatar
增加备件列表,物流信息等页面
0338f017
 
罗翻 committed 7 years ago
104 105 106 107 108 109 110 111 112
                    android:layout_height="wrap_content"
                    android:text="@string/tv_apply_mobile"
                    android:textColor="@color/default_editext_color"
                    android:textSize="14sp" />

                <TextView
                    android:id="@+id/tv_apply_mobile"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
罗翻's avatar
增加备件列表,物流信息等页面
5db0dd03
 
罗翻 committed 7 years ago
113
                    android:layout_marginLeft="5dp"
罗翻's avatar
增加备件列表,物流信息等页面
0338f017
 
罗翻 committed 7 years ago
114 115 116 117 118 119 120 121 122 123 124
                    android:textColor="@color/default_text_color"
                    android:textSize="14sp" />
            </LinearLayout>

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginBottom="@dimen/dp_15"
                android:orientation="horizontal">

                <TextView
罗翻's avatar
增加备件列表,物流信息等页面
5db0dd03
 
罗翻 committed 7 years ago
125
                    android:layout_width="75dp"
罗翻's avatar
增加备件列表,物流信息等页面
0338f017
 
罗翻 committed 7 years ago
126 127 128 129 130 131 132 133 134
                    android:layout_height="wrap_content"
                    android:text="@string/tv_apply_time"
                    android:textColor="@color/default_editext_color"
                    android:textSize="14sp" />

                <TextView
                    android:id="@+id/tv_apply_time"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
罗翻's avatar
增加备件列表,物流信息等页面
5db0dd03
 
罗翻 committed 7 years ago
135
                    android:layout_marginLeft="5dp"
罗翻's avatar
增加备件列表,物流信息等页面
0338f017
 
罗翻 committed 7 years ago
136 137 138 139
                    android:textColor="@color/default_text_color"
                    android:textSize="14sp" />
            </LinearLayout>

罗翻's avatar
增加寄回备件页面
24f6b543
 
罗翻 committed 7 years ago
140 141 142 143 144 145 146 147 148
            <LinearLayout
                android:id="@+id/ll_refuse_reason"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginBottom="@dimen/dp_15"
                android:orientation="horizontal"
                android:visibility="gone">

                <TextView
罗翻's avatar
增加备件列表,物流信息等页面
5db0dd03
 
罗翻 committed 7 years ago
149
                    android:layout_width="75dp"
罗翻's avatar
增加寄回备件页面
24f6b543
 
罗翻 committed 7 years ago
150 151 152 153 154 155 156 157 158
                    android:layout_height="wrap_content"
                    android:text="@string/refuse_apply_reason"
                    android:textColor="@color/default_editext_color"
                    android:textSize="14sp" />

                <TextView
                    android:id="@+id/refuse_apply_reason"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
罗翻's avatar
增加备件列表,物流信息等页面
5db0dd03
 
罗翻 committed 7 years ago
159
                    android:layout_marginLeft="5dp"
罗翻's avatar
增加寄回备件页面
24f6b543
 
罗翻 committed 7 years ago
160
                    android:textColor="@color/default_text_color"
罗翻's avatar
增加备件列表,物流信息等页面
320deecd
 
罗翻 committed 7 years ago
161 162
                    android:ellipsize="end"
                    android:maxLines="5"
罗翻's avatar
增加寄回备件页面
24f6b543
 
罗翻 committed 7 years ago
163 164 165 166 167 168 169 170 171 172 173 174
                    android:textSize="14sp" />
            </LinearLayout>

            <View
                android:id="@+id/line_one"
                android:layout_width="match_parent"
                android:layout_height="1dp"
                android:layout_marginBottom="@dimen/dp_15"
                android:layout_marginLeft="@dimen/dp_15"
                android:background="@color/line_color" />

        </LinearLayout>
罗翻's avatar
增加备件列表,物流信息等页面
0338f017
 
罗翻 committed 7 years ago
175 176 177 178 179 180 181 182 183 184 185

        <LinearLayout
            android:id="@+id/ll_send_info"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginLeft="@dimen/dp_15"
            android:layout_marginRight="@dimen/dp_15"
            android:layout_marginTop="@dimen/dp_14"
            android:orientation="vertical">

            <LinearLayout
罗翻's avatar
增加寄回备件页面
24f6b543
 
罗翻 committed 7 years ago
186
                android:id="@+id/ll_ka_instraction"
罗翻's avatar
增加备件列表,物流信息等页面
5db0dd03
 
罗翻 committed 7 years ago
187
                android:layout_width="wrap_content"
罗翻's avatar
增加备件列表,物流信息等页面
0338f017
 
罗翻 committed 7 years ago
188 189 190 191 192
                android:layout_height="wrap_content"
                android:layout_marginBottom="@dimen/dp_12"
                android:orientation="horizontal">

                <TextView
罗翻's avatar
增加备件列表,物流信息等页面
5db0dd03
 
罗翻 committed 7 years ago
193
                    android:layout_width="75dp"
罗翻's avatar
增加备件列表,物流信息等页面
0338f017
 
罗翻 committed 7 years ago
194 195 196 197 198 199 200 201 202
                    android:layout_height="wrap_content"
                    android:text="@string/tv_ka_instruction"
                    android:textColor="@color/default_editext_color"
                    android:textSize="14sp" />

                <TextView
                    android:id="@+id/ka_instruction"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
罗翻's avatar
增加备件列表,物流信息等页面
5db0dd03
 
罗翻 committed 7 years ago
203 204 205
                    android:layout_marginLeft="5dp"
                    android:ellipsize="end"
                    android:maxLines="5"
罗翻's avatar
增加备件列表,物流信息等页面
0338f017
 
罗翻 committed 7 years ago
206 207 208 209 210
                    android:textColor="@color/default_text_color"
                    android:textSize="14sp" />
            </LinearLayout>

            <LinearLayout
罗翻's avatar
增加寄回备件页面
24f6b543
 
罗翻 committed 7 years ago
211 212 213 214 215 216 217 218
                android:id="@+id/ll_sp_instruction"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginBottom="@dimen/dp_12"
                android:orientation="horizontal"
                android:visibility="gone">

                <TextView
罗翻's avatar
增加备件列表,物流信息等页面
5db0dd03
 
罗翻 committed 7 years ago
219
                    android:layout_width="75dp"
罗翻's avatar
增加寄回备件页面
24f6b543
 
罗翻 committed 7 years ago
220 221 222 223 224 225 226 227 228
                    android:layout_height="wrap_content"
                    android:text="@string/tv_sp_instruction"
                    android:textColor="@color/default_editext_color"
                    android:textSize="14sp" />

                <TextView
                    android:id="@+id/sp_instruction"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
罗翻's avatar
增加备件列表,物流信息等页面
5db0dd03
 
罗翻 committed 7 years ago
229 230 231
                    android:layout_marginLeft="5dp"
                    android:ellipsize="end"
                    android:maxLines="5"
罗翻's avatar
增加寄回备件页面
24f6b543
 
罗翻 committed 7 years ago
232 233 234 235 236 237
                    android:textColor="@color/default_text_color"
                    android:textSize="14sp" />
            </LinearLayout>

            <LinearLayout
                android:id="@+id/ll_sender"
罗翻's avatar
增加备件列表,物流信息等页面
0338f017
 
罗翻 committed 7 years ago
238 239 240 241 242 243
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginBottom="@dimen/dp_12"
                android:orientation="horizontal">

                <TextView
罗翻's avatar
增加备件列表,物流信息等页面
5db0dd03
 
罗翻 committed 7 years ago
244
                    android:layout_width="75dp"
罗翻's avatar
增加备件列表,物流信息等页面
0338f017
 
罗翻 committed 7 years ago
245 246 247 248 249 250 251 252 253
                    android:layout_height="wrap_content"
                    android:text="@string/tv_ka_name"
                    android:textColor="@color/default_editext_color"
                    android:textSize="14sp" />

                <TextView
                    android:id="@+id/sender"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
罗翻's avatar
增加备件列表,物流信息等页面
5db0dd03
 
罗翻 committed 7 years ago
254
                    android:layout_marginLeft="5dp"
罗翻's avatar
增加备件列表,物流信息等页面
0338f017
 
罗翻 committed 7 years ago
255 256 257 258 259
                    android:textColor="@color/default_text_color"
                    android:textSize="14sp" />
            </LinearLayout>

            <LinearLayout
罗翻's avatar
增加寄回备件页面
24f6b543
 
罗翻 committed 7 years ago
260
                android:id="@+id/ll_sender_mobile"
罗翻's avatar
增加备件列表,物流信息等页面
0338f017
 
罗翻 committed 7 years ago
261 262 263 264 265 266
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginBottom="@dimen/dp_12"
                android:orientation="horizontal">

                <TextView
罗翻's avatar
增加备件列表,物流信息等页面
5db0dd03
 
罗翻 committed 7 years ago
267
                    android:layout_width="75dp"
罗翻's avatar
增加备件列表,物流信息等页面
0338f017
 
罗翻 committed 7 years ago
268 269 270 271 272 273 274 275 276
                    android:layout_height="wrap_content"
                    android:text="@string/tv_apply_mobile"
                    android:textColor="@color/default_editext_color"
                    android:textSize="14sp" />

                <TextView
                    android:id="@+id/sender_mobile"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
罗翻's avatar
增加备件列表,物流信息等页面
5db0dd03
 
罗翻 committed 7 years ago
277
                    android:layout_marginLeft="5dp"
罗翻's avatar
增加备件列表,物流信息等页面
0338f017
 
罗翻 committed 7 years ago
278 279 280 281 282
                    android:textColor="@color/default_text_color"
                    android:textSize="14sp" />
            </LinearLayout>

            <LinearLayout
罗翻's avatar
增加寄回备件页面
24f6b543
 
罗翻 committed 7 years ago
283
                android:id="@+id/ll_need_return"
罗翻's avatar
增加备件列表,物流信息等页面
0338f017
 
罗翻 committed 7 years ago
284 285 286 287 288 289
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginBottom="@dimen/dp_15"
                android:orientation="horizontal">

                <TextView
罗翻's avatar
增加备件列表,物流信息等页面
5db0dd03
 
罗翻 committed 7 years ago
290
                    android:layout_width="75dp"
罗翻's avatar
增加备件列表,物流信息等页面
0338f017
 
罗翻 committed 7 years ago
291 292 293 294 295 296 297 298 299
                    android:layout_height="wrap_content"
                    android:text="@string/tv_need_return"
                    android:textColor="@color/default_editext_color"
                    android:textSize="14sp" />

                <TextView
                    android:id="@+id/need_return"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
罗翻's avatar
增加备件列表,物流信息等页面
5db0dd03
 
罗翻 committed 7 years ago
300
                    android:layout_marginLeft="5dp"
罗翻's avatar
增加备件列表,物流信息等页面
0338f017
 
罗翻 committed 7 years ago
301 302 303 304 305 306
                    android:textColor="@color/default_text_color"
                    android:textSize="14sp" />

            </LinearLayout>

            <LinearLayout
罗翻's avatar
增加寄回备件页面
24f6b543
 
罗翻 committed 7 years ago
307
                android:id="@+id/ll_couries_company"
罗翻's avatar
增加备件列表,物流信息等页面
0338f017
 
罗翻 committed 7 years ago
308 309 310 311 312 313
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginBottom="@dimen/dp_15"
                android:orientation="horizontal">

                <TextView
罗翻's avatar
增加备件列表,物流信息等页面
5db0dd03
 
罗翻 committed 7 years ago
314
                    android:layout_width="75dp"
罗翻's avatar
增加备件列表,物流信息等页面
0338f017
 
罗翻 committed 7 years ago
315 316 317 318 319 320 321 322 323
                    android:layout_height="wrap_content"
                    android:text="@string/couries_company_name"
                    android:textColor="@color/default_editext_color"
                    android:textSize="14sp" />

                <TextView
                    android:id="@+id/couries_compay"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
罗翻's avatar
增加备件列表,物流信息等页面
5db0dd03
 
罗翻 committed 7 years ago
324
                    android:layout_marginLeft="5dp"
罗翻's avatar
增加备件列表,物流信息等页面
0338f017
 
罗翻 committed 7 years ago
325 326 327 328 329 330
                    android:textColor="@color/default_text_color"
                    android:textSize="14sp" />

            </LinearLayout>

            <LinearLayout
罗翻's avatar
增加寄回备件页面
24f6b543
 
罗翻 committed 7 years ago
331
                android:id="@+id/ll_part_num"
罗翻's avatar
增加备件列表,物流信息等页面
0338f017
 
罗翻 committed 7 years ago
332 333
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
罗翻's avatar
增加寄回备件页面
24f6b543
 
罗翻 committed 7 years ago
334
                android:layout_marginBottom="@dimen/dp_15"
罗翻's avatar
增加备件列表,物流信息等页面
0338f017
 
罗翻 committed 7 years ago
335 336 337
                android:orientation="horizontal">

                <TextView
罗翻's avatar
增加备件列表,物流信息等页面
5db0dd03
 
罗翻 committed 7 years ago
338
                    android:layout_width="75dp"
罗翻's avatar
增加备件列表,物流信息等页面
0338f017
 
罗翻 committed 7 years ago
339 340 341 342 343 344 345 346 347
                    android:layout_height="wrap_content"
                    android:text="@string/tv_part_num"
                    android:textColor="@color/default_editext_color"
                    android:textSize="14sp" />

                <TextView
                    android:id="@+id/part_num"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
罗翻's avatar
增加备件列表,物流信息等页面
5db0dd03
 
罗翻 committed 7 years ago
348
                    android:layout_marginLeft="5dp"
罗翻's avatar
增加备件列表,物流信息等页面
0338f017
 
罗翻 committed 7 years ago
349 350
                    android:textColor="@color/default_text_color"
                    android:textSize="14sp" />
罗翻's avatar
增加寄回备件页面
24f6b543
 
罗翻 committed 7 years ago
351 352 353 354 355 356 357 358 359
            </LinearLayout>

            <LinearLayout
                android:id="@+id/ll_send_refuse_reason"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginBottom="@dimen/dp_15"
                android:orientation="horizontal"
                android:visibility="gone">
罗翻's avatar
增加备件列表,物流信息等页面
0338f017
 
罗翻 committed 7 years ago
360

罗翻's avatar
增加寄回备件页面
24f6b543
 
罗翻 committed 7 years ago
361
                <TextView
罗翻's avatar
增加备件列表,物流信息等页面
5db0dd03
 
罗翻 committed 7 years ago
362
                    android:layout_width="75dp"
罗翻's avatar
增加寄回备件页面
24f6b543
 
罗翻 committed 7 years ago
363 364 365 366 367 368 369 370 371
                    android:layout_height="wrap_content"
                    android:text="@string/refuse_apply_reason"
                    android:textColor="@color/default_editext_color"
                    android:textSize="14sp" />

                <TextView
                    android:id="@+id/refuse_send_reason"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
罗翻's avatar
增加备件列表,物流信息等页面
5db0dd03
 
罗翻 committed 7 years ago
372
                    android:layout_marginLeft="5dp"
罗翻's avatar
增加寄回备件页面
24f6b543
 
罗翻 committed 7 years ago
373 374
                    android:textColor="@color/default_text_color"
                    android:textSize="14sp" />
罗翻's avatar
增加备件列表,物流信息等页面
0338f017
 
罗翻 committed 7 years ago
375 376
            </LinearLayout>

罗翻's avatar
增加寄回备件页面
24f6b543
 
罗翻 committed 7 years ago
377 378 379 380 381 382 383 384
            <View
                android:id="@+id/line_two"
                android:layout_width="match_parent"
                android:layout_height="1dp"
                android:layout_marginLeft="@dimen/dp_15"
                android:layout_marginTop="@dimen/dp_15"
                android:background="@color/line_color" />
        </LinearLayout>
罗翻's avatar
增加备件列表,物流信息等页面
0338f017
 
罗翻 committed 7 years ago
385 386 387 388 389 390 391 392 393 394 395 396 397

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginBottom="@dimen/dp_10"
            android:layout_marginTop="@dimen/dp_10"
            android:gravity="right"
            android:orientation="horizontal">

            <TextView
                android:id="@+id/logistics_info"
                android:layout_width="75dp"
                android:layout_height="27dp"
罗翻's avatar
增加寄回备件页面
24f6b543
 
罗翻 committed 7 years ago
398
                android:layout_marginRight="10dp"
罗翻's avatar
增加备件列表,物流信息等页面
5db0dd03
 
罗翻 committed 7 years ago
399
                android:background="@drawable/btn_grey_react"
罗翻's avatar
增加备件列表,物流信息等页面
0338f017
 
罗翻 committed 7 years ago
400
                android:gravity="center"
罗翻's avatar
增加备件列表,物流信息等页面
5db0dd03
 
罗翻 committed 7 years ago
401
                android:text="@string/logistics_info"
罗翻's avatar
增加备件列表,物流信息等页面
0338f017
 
罗翻 committed 7 years ago
402 403 404 405 406 407 408 409 410 411 412
                android:textColor="#FF3A3A3A"
                android:textSize="13sp"
                android:visibility="gone" />

            <TextView
                android:id="@+id/receive_part"
                android:layout_width="75dp"
                android:layout_height="27dp"
                android:layout_marginRight="10dp"
                android:background="@drawable/btn_blue_react"
                android:gravity="center"
罗翻's avatar
增加备件列表,物流信息等页面
5db0dd03
 
罗翻 committed 7 years ago
413
                android:text="@string/receive_part"
罗翻's avatar
增加备件列表,物流信息等页面
0338f017
 
罗翻 committed 7 years ago
414 415 416 417
                android:textColor="#FF3A3A3A"
                android:textSize="13sp"
                android:visibility="gone" />
        </LinearLayout>
罗翻's avatar
增加服务说明页面,去除basepresenter中的mActivity
3a16a783
 
罗翻 committed 7 years ago
418 419
    </LinearLayout>
</layout>