I am developing an simple app, where I already displayed marker title with mrkr.showInfoWindow()
but I don't want user to tap again that marker. How to disable clicking event of particular marker ?
This is how I tried.
Marker marker = gMap.addMarker(new MarkerOptions().position(new LatLng(location
.getLatitude(), location.getLongitude())).title("I am here").icon(BitmapDescriptorFactory.fromResource(R.drawable.mrk1)));
marker.showInfoWindow();
//how to use marker.setClickable here or somthing here.?
How to display that infowindow()/title of my marker throughout my application ?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…