Disable pinch zoom and any zooming
shriharsha-bhagwat opened this issue · 3 comments
shriharsha-bhagwat commented
I want to just zoom tileview to a single marker when user open activity and then disable zooming/pinch to zoom. Could you please help?
moagrius commented
In answer to your first question, (animated gif), a quick google looks like it's possible: https://github.com/Miserlou/Android-SDK-Samples/blob/master/ApiDemos/src/com/example/android/apis/graphics/BitmapDecode.java#L103
For the second question, what version are you using? 2 or 3?
shriharsha-bhagwat commented
Animated GIf I could achieve. I will post solution here. For my 2nd question, I am using tileview 2.9. I need help with that. Could you please help?
moagrius commented
to disable pinch to zoom in 2.x, override onScale
@Override
public boolean onScale( ScaleGestureDetector scaleGestureDetector ) {
return true;
}