像谷歌地图一样在右下角添加自定义位置按钮

Add custom location button in right bottom corner like in GoogleMaps

在我的应用程序的右下角添加一个带有地图的按钮,并像在 GoogleMaps 中那样在不同状态下更改此按钮的最佳方法是什么?我正在使用 OSMDroid 并且需要添加自定义按钮,而不是默认按钮。

使用此布局,它可以满足您的需求

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical">

    <RelativeLayout

        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <fragment

            android:id="@+id/map"
            android:layout_width="match_parent"
            android:layout_height="match_parent" />

        <ImageView
            android:id="@+id/imageViewFlagPassenger"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerInParent="true"
            android:background="@android:color/transparent"
            android:src="@drawable/marker" />

        <ImageView
            android:id="@+id/btn_passenger_current_location"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            android:layout_alignParentRight="true"
            android:layout_marginBottom="20dp"
            android:layout_marginRight="10dp"
            android:background="@drawable/location_icon" />

    </RelativeLayout>

</LinearLayout>