How To Display Text When Tap On Marker In Google Maps Android
I want to display like this. https://lh6.ggpht.com/DOvS0NiHGyGC9Vn7JvkwznRBZ7I65j3zwpNAqLkP5y083ju7JQbwWi4NAXQLp5Wsavmn=h900 When google map marker gets tap, text will display belo
Solution 1:
implement this method instead of infoWindowClick
gm.setOnMarkerClickListener(newOnMarkerClickListener() {
@OverridepublicbooleanonMarkerClick(Marker arg0) {
// TODO Auto-generated method stubString title = "Any Thing You want";
marker.setTitle(title);
textView.setText("title");
returntrue;
}
});
Solution 2:
You have to create hidden layout for it. Create one layout as per your need and do it GONE by default. But when you click like below and inflate that layout in you onClick method:
gm.setOnInfoWindowClickListener(this);
@OverridepublicvoidonInfoWindowClick(Marker marker) {
String a=marker.getTitle();
LayoutInflater inflater;
inflater = LayoutInflater.from(context);
View view;
view = adapterInflater.inflate(R.layout.adapter_add_event, null);
// how to display this title in same screen below with dragging up and down when map marker been tap
}
And visible this layout, do findViewById and make it visible.
Solution 3:
or.. If your marker is draggable, use the following snippet
map.setOnMarkerDragListener(newGoogleMap.OnMarkerDragListener() {
@OverridepublicvoidonMarkerDragEnd(Marker marker) {
marker.setSnippet("Your Text");
map.animateCamera(CameraUpdateFactory.newLatLng(marker.getPosition()));
}
});
Post a Comment for "How To Display Text When Tap On Marker In Google Maps Android"