lmw
2024-06-07 4264d859bb9f6cbc4c069a9350c917f1b23009dd
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    xmlns:tools="http://schemas.android.com/tools"
    android:orientation="vertical"
    android:layout_height="match_parent">
 
    <LinearLayout
        android:background="@color/write"
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:orientation="horizontal">
 
        <TextView
            android:id="@+id/tv_city_name"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:text="柳州市"
            android:gravity="center"
            android:paddingStart="14dp"
            android:paddingEnd="30dp"
            android:drawablePadding="4dp"
            android:textColor="#ff000000"
            android:textSize="14sp"
            />
 
        <View
            android:layout_width="1dp"
            android:layout_marginTop="15dp"
            android:alpha="0.3"
            android:layout_marginBottom="15dp"
            android:layout_height="match_parent"
            android:background="@color/black_333333"/>
 
        <TextView
            android:id="@+id/tv_search"
            android:layout_width="match_parent"
            android:paddingStart="12dp"
            android:gravity="center_vertical"
            android:layout_height="match_parent"
            android:drawableStart="@mipmap/icon_search"
            android:text="搜索具体地点"
            android:drawablePadding="3dp"
            android:textColor="#66000000"
            android:textSize="12sp"
            />
 
    </LinearLayout>
 
    <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"/>
 
        <RelativeLayout
            android:id="@+id/rl_bottom"
            android:layout_width="match_parent"
            android:layout_alignParentBottom="true"
            android:layout_marginBottom="8dp"
            android:layout_marginStart="12dp"
            android:layout_marginEnd="12dp"
            android:background="@drawable/write_back_radio_15"
            android:layout_height="wrap_content">
 
            <TextView
                android:id="@+id/tv_site"
                android:layout_width="match_parent"
                android:layout_marginStart="21dp"
                android:layout_marginTop="16dp"
                android:layout_height="wrap_content"
                android:layout_marginEnd="100dp"
                tools:text="武侯区天府新谷"
                android:textStyle="bold"
                android:textColor="#ff27282d"
                android:textSize="14sp"
                />
 
 
 
            <View
                android:layout_marginTop="4dp"
                android:id="@+id/view_point"
                android:layout_below="@+id/tv_site"
                android:layout_width="6dp"
                android:layout_marginStart="7dp"
                android:layout_height="6dp"
                android:background="@drawable/bg_point_main_color"/>
 
            <TextView
                android:id="@+id/tv_site_detail"
                android:layout_width="match_parent"
                android:layout_marginEnd="100dp"
                android:layout_height="wrap_content"
                android:layout_below="@+id/view_point"
                android:layout_marginStart="21dp"
                android:layout_marginBottom="16dp"
                android:layout_marginTop="4dp"
                tools:text="四川省成都市武侯区府城大道399号"
                android:textColor="#ff27282d"
                android:textSize="12sp"
                />
 
            <TextView
                android:id="@+id/tv_sure"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="确定"
                android:padding="10dp"
                android:layout_centerVertical="true"
                android:layout_marginEnd="10dp"
                android:textColor="@color/black_333333"
                android:textStyle="bold"
                android:layout_alignParentEnd="true"/>
 
 
        </RelativeLayout>
 
        <ImageView
            android:id="@+id/iv_reset_map"
            android:layout_marginStart="12dp"
            android:layout_above="@+id/rl_bottom"
            android:layout_marginBottom="20dp"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            app:srcCompat="@mipmap/icon_reset_map" />
 
 
    </RelativeLayout>
 
</LinearLayout>