I have this code
itemizedOverlay = new MyItemizedOverlay(drawable,this);
itemizedOverlay.setGestureDetector(new GestureDetector(new MyGestureDetecor()));
but new GestureDetector
is marked as Deprecated in Eclipse.
I want to avoid the use of deprecated methods.
How could I fix this problem?
What is the non-deprecated form?