Android开发中是否可以在带有ScrollView的LinearLayout中添加多个TableLayout?

发布于 2024-12-19 16:25:13 字数 235 浏览 1 评论 0原文

我已经制作了这个不错的 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 技术交流群。

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

发布评论

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

评论(1

£冰雨忧蓝° 2024-12-26 16:25:13

是的,您可以使用更多 TableLayout 但在滚动视图中只需要一个父布局

<Scrollview>
      <LinearLayout> //parent layout
          <TableLayout>
           <TableRow></TableRow>
            </TableLayout>
           <TableLayout>
          <TableLayout>
         </TableLayout>
        </TableLayout>
     <LinearLayout>
<Scrollview>

yes you can use more TableLayout but you need only one parent layout in the scrollview

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