我通过以下方式向Google Map添加默认标记:

GoogleMap map = ((MapFragment) getFragmentManager().findFragmentById(R.id.editMapMap)).getMap();

MarkerOptions markerOptions = new MarkerOptions();
markerOptions.position(currentLocation.getCoordinate());
markerOptions.title(Utils.getLocationString(currentLocation.getCoordinate()));
markerOptions.snippet("Blah");

locationMarker = map.addMarker(markerOptions);
locationMarker.setDraggable(true);
如何使标记始终显示标题和摘要而无需触摸?我也想禁用隐藏它们的功能。

最佳答案

这很简单:

locationMarker.showInfoWindow();

10-04 15:47