-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvehicle_manage_frag.xml
88 lines (80 loc) · 2.92 KB
/
vehicle_manage_frag.xml
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginLeft="1dp"
android:layout_marginRight="1dp"
android:background="#f0f0f0" >
<TextView
android:id="@+id/tv_vehicle_hint"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_marginBottom="20dp"
android:padding="15dp"
android:text="@string/vehicle_manage_hint"
android:textSize="16sp" />
<RelativeLayout
android:id="@+id/rl_unregister"
android:layout_width="match_parent"
android:layout_height="55dp"
android:layout_below="@+id/tv_vehicle_hint"
android:layout_marginTop="8dp"
android:background="@color/white"
android:orientation="horizontal" >
<TextView
android:id="@+id/tv_prompt_msg"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_marginLeft="15dp"
android:textColor="@color/text_color"
android:textSize="16sp" />
</RelativeLayout>
<ListView
android:id="@+id/lv_vehicle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/rl_unregister"
android:layout_marginTop="2dp"
android:dividerHeight="2dp"
android:background="@color/white"
/>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:gravity="center_vertical"
android:layout_below="@+id/lv_vehicle"
>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center_horizontal"
android:orientation="vertical"
>
<ImageView
android:id="@+id/iv_no_data"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/search_fail"
android:visibility="gone"
/>
<ImageView
android:id="@+id/iv_click_search"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/click_refresh"
android:visibility="gone"
/>
<TextView
android:id="@+id/tv_click_search_msg"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="20sp"
android:textColor="@color/title_color"
android:layout_marginTop="5dp"
android:visibility="gone"
/>
</LinearLayout>
</LinearLayout>
</RelativeLayout>