<?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>
|