<?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:id="@+id/activity_main"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:orientation="vertical"
|
>
|
|
<TextView
|
android:id="@+id/tv_location"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:textSize="16sp"
|
android:gravity="center"
|
android:text="地址显示"
|
android:layout_alignParentTop="true"
|
android:layout_alignParentLeft="true"
|
android:padding="10dp"
|
android:layout_alignParentStart="true" />
|
<TextView
|
android:id="@+id/tv_coordinates"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:textSize="15sp"
|
android:gravity="center"
|
android:text="坐标显示"
|
android:paddingBottom="10dp"
|
/>
|
<FrameLayout
|
android:layout_width="match_parent"
|
android:layout_height="match_parent">
|
<com.baidu.mapapi.map.MapView
|
android:id="@+id/bmapView"
|
android:layout_width="fill_parent"
|
android:layout_height="fill_parent"
|
android:clickable="true" />
|
<ImageView
|
android:id="@+id/bt_change"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:src="@mipmap/map"
|
android:layout_gravity="left|bottom"
|
android:scaleType="centerInside"/>
|
</FrameLayout>
|
</LinearLayout>
|