[android-beginners] onTap/mapView question

2010-03-11 Thread Michael Dorin
Is there anyway to have both: @Override public boolean onTap(GeoPoint p, MapView mapView) @Override protected boolean onTap(int index) I want to be able to detect if a user has tapped a previously selected GeoPoint. I guess I could do some kind of ugly lat/lon compare in a list..

Re: [android-beginners] onTap/mapView question

2010-03-11 Thread Mark Murphy
Michael Dorin wrote: Is there anyway to have both: @Override public boolean onTap(GeoPoint p, MapView mapView) @Override protected boolean onTap(int index) I want to be able to detect if a user has tapped a previously selected GeoPoint. I guess I could do some kind of