I want to disable pinch zoom at barchart in MPAndroidChart library how i can do that.
barchart
MPAndroidChart
library.barchart.setpinzoomenable(false);
also not working.
Try this,
Disable all zooming:
chart.setScaleEnabled(false);
More info refer here
My layout contains buttons, textviews, etc. Is it possible to implement pinch zoom in my layout?
I have an application in which I need to implement image editing, which also includes pinch zooming. I am done with pinch zooming but I can test this only on device, not on emulator. Is there any way for testing …
Can we use scale gesture detector for pinch zoom in Android?