问题
I started a new project with the Google Maps template of Android Studio and just added a marker to the map.
LatLng location = new LatLng(lat, lng);
Marker marker = mMap.addMarker(new MarkerOptions()
.position(location)
.icon(BitmapDescriptorFactory.fromResource(R.drawable.marker)));
When I click the Marker there comes a little menu with a Google Maps icon on the bottom right corner:

How can I get rid of this thing? I couldn't find anything I even don't know how to call it but I really need to get rid of it.
回答1:
You need to call setMapToolbarEnabled method of UiSettings
Like this:
@Override
public void onMapReady(GoogleMap googleMap) {
googleMap.getUiSettings().setMapToolbarEnabled(false);
// Do other staff
}
来源:https://stackoverflow.com/questions/28377823/google-maps-remove-marker-route-context-menu