Android——如何允许水平和垂直滚动
ScrollView 只允许垂直滚动,HorizontalScrollView 只允许水平滚动,但两者都没有类。这似乎是 Android 用户界面中一个相当大的缺陷。有什么技巧可以允许这样做吗?
There is the ScrollView that allows only vertical scrolling, and the HorizontalScrollView that allows only horizontal scrolling, but no class for both. This seems like a pretty gaping deficit in the Android UI. Any tricks to allow this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
试试这个
Try this
带有 ImageView 的示例:
来源: http:// /www.android-spa.com/viewtopic.php?t=3959&highlight=scrollview+vertical+horizontal
An example with an ImageView:
Source: http://www.android-spa.com/viewtopic.php?t=3959&highlight=scrollview+vertical+horizontal
我发现设置 fillViewport 很重要,否则滚动条可能会出现在随机位置,而不是出现在滚动区域的右侧/底部:
I found it is important to set
fillViewport
because otherwise scroll bars might appear at random positions instead of at the right/bottom of the scrolling area: