lmw
2024-09-23 f23be5d1086538d541281b84d8b093f95c545c47
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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent"
    android:orientation="vertical"
    android:layout_height="match_parent">
 
    <include layout="@layout/include_order_top"/>
 
    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">
 
        <com.amap.api.maps.MapView
            android:id="@+id/map_view"
            android:layout_width="match_parent"
            android:layout_height="match_parent"/>
 
        <com.future.driver.utils.view.SlidingButton
            android:id="@+id/slide_btn"
            android:layout_width="match_parent"
            android:layout_margin="14dp"
            android:layout_alignParentBottom="true"
            android:layout_height="60dp"/>
 
        <ImageView
            android:id="@+id/iv_move"
            android:layout_width="40dp"
            android:layout_height="40dp"
            android:layout_above="@+id/slide_btn"
            android:layout_alignStart="@+id/slide_btn"
            android:src="@mipmap/pos"/>
 
        <ImageView
            android:id="@+id/iv_to_gd"
            android:layout_width="40dp"
            android:layout_height="40dp"
            android:layout_above="@+id/slide_btn"
            android:layout_alignEnd="@+id/slide_btn"
            android:src="@mipmap/daohang"/>
 
        <ImageView
            android:id="@+id/iv_police"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="10dp"
            android:layout_marginEnd="10dp"
            android:layout_alignParentEnd="true"
            android:src="@mipmap/img110"/>
 
    </RelativeLayout>
 
</LinearLayout>