Toujours afficher la carte marqueur de titre dans Android

Je suis l'ajout de Marqueur par défaut à GoogleMap la manière suivante:

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);

Comment puis-je faire marqueur de toujours afficher le titre et l'extrait sans le toucher? Je tiens également à désactiver le masquage sur touch.

InformationsquelleAutor Misha | 2013-02-28