ACTION_POINTER_UP,getX(0) 的问题
我正在使用捏缩放处理图像视图。但我无法将它与 SDK 版本 4 一起使用。在 ACTION_POINTER_UP、get(0) 和 MotionEvent.ACTION_MASK 中出现错误。当最小 sdk 设置为 5 并且选择 API 级别 5 的 Google API 时,它可以正常工作。
我的问题是我可以使用 google api[level 4] 触发 ACTION_POINTER_UP
I am working with an imageview with pinchzoom. But i cannot use it with SDK version 4. geting error in ACTION_POINTER_UP,get(0) and MotionEvent.ACTION_MASK. It works fine when minimum sdk is set to 5 and Google API of API level 5 is selected.
My question is Can i trigger ACTION_POINTER_UP with google api[level 4]
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
问题是多点触控是从 API 5 开始的。在 API 4 中,通过调用 get() 而不是 get(0) 只能获取 1 个指针,而且在 API 4 中没有 ACTION_POINTER_UP,只有 ACTION_UP
The problem is that multitouch is since API 5. in API 4 you can get only 1 pointer by calling get() instead of get(0) and also in API 4 there is no ACTION_POINTER_UP, only ACTION_UP