Does anyone know how to create a message bubble with 2 buttons appears on top of an overlayitem for
Posted
by Zap
on Stack Overflow
See other posts from Stack Overflow
or by Zap
Published on 2010-03-20T17:55:08Z
Indexed on
2010/03/20
18:21 UTC
Read the original article
Hit count: 385
I currently have implemented an overlayitem that shows an icon for geopoint on a map application in Android. When the icon is clicked, it brings up an AlertDialog from the onTap method below. I have the following questions:
- Does anyone know how to display a map message bubble directly above the icon overlayitem with 2 callout buttons one to the left of the title and one to the right of the bubble?
- Does anyone know how to make the overlayitem draggable so I can press and hold it and drag it across the map. I am trying to duplicate the draggable icon behavior that's available on the iPhone.
If so, please share some sample code. Thanks
protected boolean onTap(int index) {
OverlayItem item = mOverlays.get(index);
AlertDialog.Builder dialog = new AlertDialog.Builder(mContext);
dialog.setTitle(item.getTitle());
dialog.setMessage(item.getSnippet());
dialog.show();
return true;
}
© Stack Overflow or respective owner