在android的布局中创建2个垂直滚动条

发布于 2024-12-06 10:27:12 字数 112 浏览 0 评论 0原文

在我的布局中有一个列表视图和多个控件。如果我创建滚动视图

列表视图滚动不起作用。如果我删除滚动视图列表视图滚动是有效的。

如何让两个卷轴都工作?

提前致谢, 杜莱

In my layout there is one Listview and multiple controls. If I create scroll view

listview scroll does not work. If I remove scroll view listview scrolling is works.

how to get both scrolls working?

Thanks in advance,
Durai

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

无戏配角 2024-12-13 10:27:12

如果您确实需要两者(ScrollView 和 ListView),请尝试减小 ListView 的宽度,以便在 ListView 的左侧或右侧有一些可用空间,用户可以在其中触摸和滚动其下方的 ScrollView。否则ListView将始终接收滚动事件。

我的意思是这样的:

-----------------------
I               I     I
I               I     I
I               I     I
I    ListView   I     I
I               I     I
I               I     I
I               I     I
-----------------------

<---- ScrollView  ---->

If you really need both (ScrollView and ListView), try to reduce the width of the ListView, so that you have some free space on the left or right of the ListView, where the user can touch and scroll the ScrollView below it. Otherwise the ListView will always receive the scroll events.

I mean it like this:

-----------------------
I               I     I
I               I     I
I               I     I
I    ListView   I     I
I               I     I
I               I     I
I               I     I
-----------------------

<---- ScrollView  ---->
日暮斜阳 2024-12-13 10:27:12

你无法让两者都滚动。您可以在包装其内容时定义 Listview 的权重。

否则,如果其他控件占用了太多屏幕空间,则不要使用 Listview,而是使用 Linearlayout 来通过 ScrollView 来容纳您的项目作为家长。

You cannot get both to scroll. You can define weight for your Listview while wrapping its content.

Otherwise if other controls take too much of the screen space then, instead of using a Listview, Use a Linearlayout to hold your items with a ScrollView as the parent.

无风消散 2024-12-13 10:27:12

ListView 有自己的滚动条,可以延伸到列表的长度。您不能将滚动和列表视图组合在一起。

ListView comes with its own scroll and extends till the length of the list. You cannot club scroll and listview together.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文