Skip to content

Instantly share code, notes, and snippets.

@DanielGrech
DanielGrech / gist:2572571
Created May 2, 2012 00:19
Android Mapview with longpress support
public class LongPressMapView extends MapView {
private boolean mWasLongClick = false;
private LongPressMapView.OnLongpressListener longpressListener;
public LongPressMapView(Context context, String apiKey) {
super(context, apiKey);
}
public LongPressMapView(Context context, AttributeSet attrs) {