我想在显示的 GoogleMap 上添加一个按钮。我的地图显示为
GoogleMap map = ((SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.map)).getMap();
我使用片段来显示地图,布局 xml 是
<fragment xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/map"
android:layout_width="match_parent"
android:layout_height="match_parent"
class="com.google.android.gms.maps.SupportMapFragment" />
我找到了一些将按钮加载到视图上的信息,但他们的只是普通视图,而不是 GoogleMap。谢谢