在Android中水平和垂直滚动ListView
可能的重复:
Android 中的水平 ListView?
我正在通过膨胀 xml 文件创建一个 listView,我想要我的要水平和垂直滚动的列表我的内容隐藏在屏幕的左侧部分。
有人可以告诉我如何水平滚动列表吗??
更新
我可以使用HorizontalScrollView
但它会水平滚动。我希望两个滚动条都启用
Possible Duplicate:
Horizontal ListView in Android?
I am creating a listView by inflating a xml file,,I want my list to be scrolled Horizontal as well as Vertically my content are hiding in left part of screen.
Can someone tell me how to scroll a list horizontally.??
Updated
I can use HorizontalScrollView
But it will scroll horizontally.I want both scrollbar to be enable
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 Gallery 代替
ListView
- 它将水平滚动,并且可以以与ListView
相同的方式填充数据。编辑:看看这篇文章:Horizontal ListView in Android?,有你的代码示例需要。
Instead of using
ListView
use Gallery - it will be scrolled horizontal, and can be filled with datas in the same way as theListView
.EDIT: Look at this post: Horizontal ListView in Android?, there are code samples of what you need.