表格布局调整。是否可以?

发布于 2024-11-26 06:28:46 字数 122 浏览 1 评论 0原文

我有一个包含五列和许多行且包含动态内容的表格布局。

我们注意到每一列的宽度都是该列所有单元格的最大值。

我不想水平滚动,但我想检测何时超出总宽度,以便我可以删除其中一列。

这可能吗?

I have a table layout with five columns and many rows with dynamic content.

We notice that each column takes the width of the maximum of all cells of that column.

I do not want horizontal scrolling but I want to detect when the total width has been exceeded so I can remove one of the columns.

Is this possible?

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

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

发布评论

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

评论(2

感情废物 2024-12-03 06:28:46

您可以自己在 TableLayout 上调用measure(),并使用 getMeasuredWidth/Height 检查结果。

You could call measure() on the TableLayout yourself and check the result with getMeasuredWidth/Height.

骄傲 2024-12-03 06:28:46

如果您要在循环中添加每一行,那么我想您可以执行以下操作:

int longestRowWidth = 0;

for(i=0; i<6; i++) 
{

    // Add your row here

    // Get the width of your new row here
    int rowWidth = blablah


    // Check if it exceeds longestRowWidth
    if(rowWidth > longestRowWidth)
    {
        // Do your stuff here.
    }
}

If you are adding each row in a loop, then I guess you could do something like:

int longestRowWidth = 0;

for(i=0; i<6; i++) 
{

    // Add your row here

    // Get the width of your new row here
    int rowWidth = blablah


    // Check if it exceeds longestRowWidth
    if(rowWidth > longestRowWidth)
    {
        // Do your stuff here.
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文