是否有Android Pinch Zoom的第三方库

时间:2011-04-28 21:12:05

标签: android zoom multi-touch touchscreen

是否有人知道是否有第3个paty(或内置)库有助于检测和处理捏缩放事件?

基本上我正在寻找的是一些从触摸事件中获取坐标的类,并返回它是否是一个捏缩放事件......

4 个答案:

答案 0 :(得分:4)

看一下这个:http://code.google.com/p/android-pinch/

那里没有很多活动,但你可以查看代码。

这个问题也可以帮助你:Is there a built in API for handling pinch-zoom functionality in Android

答案 1 :(得分:1)

来自http://android-developers.blogspot.com/2010/06/making-sense-of-multitouch.html的Android开发人员博客文章解释了多点触控事件的一般处理,并提供了ScaleGestureDetector的示例,这是Android框架的一个组件,可检测缩放缩放手势并回调您的代码进行处理它

答案 2 :(得分:1)

我想你应该看一下Github上的这个图书馆https://github.com/sephiroth74/ImageViewZoom

答案 3 :(得分:0)

这有帮助吗?它可能比你想象的要简单一点: Implementing the Pinch Zoom Gesture