如何在 TouchImageView 中实现 onFling 事件,使其表现得像您在 Facebook 或 Google 中看到的画廊一样?
存在一些问题,但没有一个真正为这个问题提供明确的解决方案。 Android 没有内置任何功能来执行此操作,因此 Mike Ortiz 实现了 TouchImageView 太棒了。它完美地完成了它应该做的事情。但现在我想把它变成一个使用 onFling 手势在另一个 TouchImageView 中滚动的 Gallery。最好的方法是什么?
There are a handful of questions out there, but none really provided a clear solution to this problem. Android does not have anything built in to do so, so Mike Ortiz implemented TouchImageView which is awesome. It works perfectly for what it is supposed to do. But now I want to turn this into a Gallery that uses the onFling gesture to scroll in another TouchImageView. What is the best way to do so?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我分叉了 MikeOrtiz 的 TouchImageView 以添加 ViewPager 兼容功能。在这里查看:分叉的 TouchImageView
I forked MikeOrtiz's TouchImageView to add ViewPager compatible capability. Check it out here: Forked TouchImageView
我想要相同的功能,并且我发现 ViewPager 是最好的解决方案。
http://android-developers.blogspot。 com/2011/08/horizontal-view-swiping-with-viewpager.html
这是可能适合您的示例代码,
在 Android 中设置 ViewPager 的默认页面
I wanted the same functionality and I found out ViewPager is the best solution of all.
http://android-developers.blogspot.com/2011/08/horizontal-view-swiping-with-viewpager.html
Here is the sample code which may work for you,
Set default page for ViewPager in Android