Is there a third-party library for Android Pinch Zoom

Does anyone know if there is a 3rd patch library (or built-in) that helps in detecting and handling the zoom event?

Basically, what I'm looking for is some class that takes coordinates from a touch event and whether its event returns with scaling or not ...

+6
source share
4 answers

Take a look at this: http://code.google.com/p/android-pinch/

Not much activity, but you can see the code.

this question should also help you: There is a built-in API for working with the zoom function in Android .

+4
source

An Android developer blog post at http://android-developers.blogspot.com/2010/06/making-sense-of-multitouch.html explains the general handling of multitouch events, and also provides examples of ScaleGestureDetector , an Android framework component that detects gestures zoom zoom and accesses your code to process it.

+1
source

I think you should take a look at this library on Github https://github.com/sephiroth74/ImageViewZoom

+1
source

Is this help? It may be a little easier than you thought: Implementing a hard zoom zoom

0
source

Source: https://habr.com/ru/post/886921/


All Articles