activity_receiving.xml
1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
>
<RelativeLayout
android:id="@+id/receiving_title"
style="@style/title"
>
<TextView
android:id="@+id/order_title_num"
style="@style/text_title"
android:text="待接单列表(0)"
/>
<ImageView
android:id="@+id/receiving_back"
style="@style/title_image_back"
/>
</RelativeLayout>
<ImageView
style="@style/card_line"
/>
<android.support.v4.widget.SwipeRefreshLayout
android:id="@+id/receiving_refersh"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ListView
android:id="@+id/receiving_listview"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#f5f5f5"
android:divider="@null"
android:scrollbars="none"
/>
</android.support.v4.widget.SwipeRefreshLayout>
</LinearLayout>