Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我定义了 ScrollView 并放入了一些按钮。我有两个问题:
如果我有一点按钮,那么背景太小并且不能覆盖整个屏幕。
我只想在滚动时移动按钮而不是背景。
谢谢
对于您的第一个问题,滚动视图的 layout_width 和 layout_height 值是多少?我猜它是wrap_content。尝试将其更改为 match_parent 或 fill_parent。
对于您的第二个问题,blessenm 的回复对我有用。
将滚动视图放在线性布局或框架布局内,并将背景添加到外部布局。因此,只有滚动视图中的项目才会移动。
还可以尝试将背景直接添加到滚动视图而不是其子元素,这可能不需要像我上面提到的那样添加额外的布局。