android:stretchColumns

发布于 2024-10-12 19:13:01 字数 134 浏览 1 评论 0原文

我想我只是在这里没有找到很好的解释。那么谁能告诉我 android:stretchColumns 实际上是做什么的?我把它放在我的表中,并尝试了几种不同的值,但似乎无法弄清楚它在做什么。

抱歉问了这个愚蠢的问题!

I guess I just havent found a good explanation here. So can anyone please tell me what android:stretchColumns actually does? I have it in my table and have tried several different values but cannot seem to figure out what it is doing.

Sorry for the dumb question!

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

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

发布评论

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

评论(1

林空鹿饮溪 2024-10-19 19:13:01
TableLayout 可以将某些列指定为可收缩或可拉伸

通过调用 setColumnShrinkable() 或
setColumnStretchable()。如果标记为
可收缩,列宽可以
缩小以适合桌子
父对象。 如果标记为
可拉伸,它的宽度可以扩展到
适合任何额外的空间。总宽度
表的内容由其父表定义
容器。

看看这里,请记住,如果您的表格在父对象中非常适合(没有剩余空间可以拉伸),那么无论您输入什么值,您都不会看到任何变化。

A TableLayout can specify certain columns as shrinkable or stretchable

by calling setColumnShrinkable() or
setColumnStretchable(). If marked as
shrinkable, the column width can be
shrunk to fit the table into its
parent object. If marked as
stretchable, it can expand in width to
fit any extra space. The total width
of the table is defined by its parent
container.

Have a look here, keep in mind that if your table fits nicely ( no space left to stretch) in the parent object, you would not see any changes no matter what value you put in.

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