Android开发中是否可以在带有ScrollView的LinearLayout中添加多个TableLayout?
我已经制作了这个不错的 Android 应用程序,并打算添加一些收尾工作,其中一个包括一个带有两个表格的页面,但发现我无法实现它。基本上,我试图制作一个包含某些值的表格(跨 4 或 5 列),然后在下面制作另一个包含不同值的表格(仅包含 2 列)。表格将超出屏幕,因此需要 ScrollView。然而,当我将所有这些放在一起时,我收到一个错误:ScrollView 只能托管一个直接子级。我尝试过将其放入 LinearLayout 中。那也没有什么作用。我
I have this nice android app made up and was going to add in some finishing touches, one of which includes a page with two tables, and found that I can't make it happen. Basically I am trying to make a table with some values (across 4 or 5 columns) and then make another table below of different values (with only 2 columns). The tables will exceed the screen so it needs a ScrollView. However when I put all this together I get an error: ScrollView can host only one direct child. I have tried putting it in a LinearLayout. That does nothing either. I
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,您可以使用更多 TableLayout 但在滚动视图中只需要一个父布局
yes you can use more TableLayout but you need only one parent layout in the scrollview