Newer
Older
mapCollector / app / src / main / res / layout / mylocationdemo.xml
Pengxh on 24 Sep 2021 769 bytes 首次提交
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <com.amap.api.maps.MapView
        android:id="@+id/mapview"
        android:layout_width="fill_parent"
        android:layout_height="match_parent" />

    <Button
        android:id="@+id/button_confirm"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_gravity="right"
        android:background="@drawable/btn_style_button"
        android:text="选择"
        android:textColor="@color/white"
        android:textSize="@dimen/textSize_18" />
</FrameLayout>