实现 android:stretchColumns="*"在 Android 中以编程方式

发布于 2024-12-26 22:51:09 字数 89 浏览 1 评论 0 原文

我正在开发一个在 TableLayout 中实现上述属性的应用程序。

我想知道有人可以帮助我并向我展示如何以编程方式而不是在布局文件中执行此操作吗?

I am working on an application that implements the aforementioned property in the TableLayout.

I was wondering could anyone please help me and show me how to do this programmatically and not in the layout file?

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

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

发布评论

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

评论(1

只是一片海 2025-01-02 22:51:09

查看 setColumnStretchable (int columnIndex, boolean isStretchable)

使给定的列可拉伸或不可拉伸。当可拉伸时,柱
在其行中占用尽可能多的可用空间。呼唤
该方法请求布局操作。

setStretchAllColumns(布尔stretchAllColumns) -

将所有列标记为可拉伸的便捷方法。

Checkout for setColumnStretchable (int columnIndex, boolean isStretchable) in the Android Docs.

Makes the given column stretchable or not. When stretchable, a column
takes up as much as available space as possible in its row. Calling
this method requests a layout operation.

setStretchAllColumns (boolean stretchAllColumns) -

Convenience method to mark all columns as stretchable.

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