Android 中页面的水平滚动视图
我正在寻找一种与 ios 非常相似的行为,我们可以水平滚动以查看多个页面(如演练/演示)。在 ios 中,我们可以使用 UIScrollView 和 PageControl 来做到这一点,但不确定在 Android 中如何做到这一点?
我不介意是否无法添加 PageControl 的项目符号。我更关心滚动视图的页面类型行为。
I am looking for a behavior very similar to ios where we can scroll horizontally to see multiple pages (like a walkthrough/demo). In ios we can do it with UIScrollView and PageControl but not sure how can that be done in Android?
I don't mind if it's not possible to add the bullets of PageControl. I am more concerned about the pages type behavior of scrollview.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看看viewPager上的这篇文章,我认为它有你需要的东西。
http://android-developers.blogspot.com /2011/08/horizontal-view-swiping-with-viewpager.html
Take a look at this article on viewPager, I think it has the something as you require.
http://android-developers.blogspot.com/2011/08/horizontal-view-swiping-with-viewpager.html
您可以在 android 中使用 ViewFlipper 在不同布局之间滚动或滑动...
尝试在 google 上搜索“android ViewFlipper onFling()”..
http://www.codeshogun.com/blog/tag/view-flipper/
You can use ViewFlipper in android to scroll or swipe between the different layouts....
Try searching "android ViewFlipper onFling()" on google..
http://www.codeshogun.com/blog/tag/view-flipper/