i was trying to add a "OnLongClickListener" to my MapView, but unfortunately I'm not able to get it work... Somehow the OnLongClickListener never gets called, does anybody know a way do manage that?!
- Code: Select all
mapView = (MapView) findViewById(R.id.mapview);
mapView.setOnLongClickListener(new View.OnLongClickListener() {
public boolean onLongClick(View v) {
mapView.getController().zoomOut();
Log.i("test","worked");
return true;
}
});
Thanks,
Simon


