如何禁用显示在Android Google地图上的共享按钮

时间:2019-04-11 04:52:14

标签: android google-maps

我正在使用GoogleMap Fragment在Android上显示地图。运行该应用程序并显示地图时,它在设备屏幕的右下角显示了一个大的圆形“共享”按钮,我不希望这样做。我要隐藏它。是否有相同的任何设置选项。

enter image description here

我尝试通过onMapReady中的活动遵循以下选项,但是没有运气,

mMap.getUiSettings().setMapToolbarEnabled(false);

还检查了xml属性,但是没有这样的选项

<fragment xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:map="http://schemas.android.com/apk/res-auto"
  android:name="com.google.android.gms.maps.SupportMapFragment"
  android:id="@+id/map"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  map:cameraBearing="112.5"
  map:cameraTargetLat="-33.796923"
  map:cameraTargetLng="150.922433"
  map:cameraTilt="30"
  map:cameraZoom="13"
  map:mapType="normal"
  map:uiCompass="false"
  map:uiRotateGestures="true"
  map:uiScrollGestures="false"
  map:uiTiltGestures="true"
  map:uiZoomControls="false"
  map:uiZoomGestures="true"/>

任何帮助将不胜感激...谢谢

0 个答案:

没有答案