如何保持TableRow列中控件的宽度

发布于 2024-12-03 07:19:48 字数 214 浏览 0 评论 0原文

我有一个 tablerow,其中放入了 width==50dp 的文本视图;但是当我添加另一个包含 tablerow 时textview with width==100dp,那么第一个textview必须拉伸到100dp。

如何保持第一个textview的宽度?

I have a tablerow in which i put in a textview with width==50dp;But when i add another tablerow which contains a textview with width==100dp,then the first textview has to be stretched to 100dp.

How can keep the width of the first textview's width?

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

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

发布评论

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

评论(2

娜些时光,永不杰束 2024-12-10 07:19:48

使用 android:stretchColumns 属性。
要了解更多信息,请查看链接

Use android:stretchColumns properties .
To Know more Check out Link

柳若烟 2024-12-10 07:19:48

您还可以在两个文本视图的布局中尝试此操作:

android:layout_width="0dp"

android:layout_weight="1"

这将为两行提供相同的宽度。

You can also try this in layout for both textviews:

android:layout_width="0dp"

android:layout_weight="1"

This will give equal width to both the rows.

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