如何在android中通过在屏幕上滑动数字来翻阅图片?
有人可以告诉我如何在图库中创建 Android 手机风格的图片视图吗?也就是说,当您点击一张图片时,它会以全屏形式弹出,您可以在屏幕上滑动手指并翻阅文件夹中的其他图片。
您如何创建该特定视图?
Can someone please tell me how do I create the android phone style picture view in the gallery. That is, when you click on a picture, it pops up as a full screen and you can swipe your finger across the screen and flip through the other pictures in the folder.
How do you create that particular view?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
ViewFlipper
在不同的子视图之间轻松切换,并且可以使用GestureDetector
来检测滑动手势。You can use a
ViewFlipper
to easily switch between different child views and you can use aGestureDetector
to detect the swipe gesture.使用具有此行为的基本适配器覆盖库适配器。
Override the gallery adapter with a base adapter which has this behavior.