vote up 0 vote down star

Hi. How do I long click on a mapview so that a place marker appears at that point on the map?

I tried a couple ways without success:

1) Using setOnLongClickListener on the MapvView which never detected the longclicks.

2) My other idea was to extend MapView to override dispatchTouchEvent .. Create a GestureDetector to respond to longpress callback. But I was stuck midway here as I could not get a handle to my subclassed Mapview. i.e.

MyMapview mymapview; //MyMapView extends MapView

mymapView = (MyMapView) findViewById(R.id.map);  //results in a classcast exception

3) The only other way I know how to try this is: Detect a MotionEvent.ACTION_DOWN and post a delayed runnable to a handler and detect longpress if the two other events: acton_move or an action_up, have not happened.

Can someone provide thoughts on any of these methods to detect long presses?

Thanks in advance. Bd

flag

1 Answer

vote up 0 vote down

Best way I know to do this is to use the open source mapview-overlay-manager and use its gesture listener which provides a callback for

public void onLongPress(MotionEvent e, ManagedOverlay overlay)
link|flag
thanks for your reply.. i used the library you mentioned.. i liked using double tap instead of longpress. – bd Nov 8 at 6:11
I agree; the long press is problematic because it can pop up when you're just scrolling the map. – I82Much Nov 8 at 22:51

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.