Android 表格布局问题!

发布于 2024-11-07 12:41:32 字数 215 浏览 0 评论 0原文

我有一个 TableLayout,其中一行包含两个 TextView,第一个包含日期的字符串表示形式,第二个包含标题。我的问题是第一个应该始终是 100dp 宽,第二个应该使用剩下的空间。第一个 TextView 工作正常,如果字符串无法在一行中显示,它将转到新行。但问题是第二个 TextView,它总是太宽(它的宽度扩展到屏幕之外),无论我如何更改它的大小,我只能看到其中的部分文本。有人知道如何解决这个问题吗?

I have a TableLayout in which I have one row holding two TextViews, the first one holds a String representation of a Date, the second one holds a title. My problem is the first one should always be 100dp wide, the seconde one should use the spaces that's left. The first TextView works fine and it will go to a new line if the string cannot be displayed in one line. But the problem is the second TextView, it is always too wide (its width expands out of the screen), no matter how I change its size, and I can only see part of the text that's inside it. Anyone knows how to fix this?

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

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

发布评论

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

评论(1

廻憶裏菂餘溫 2024-11-14 12:41:32
txtView1 = new TextView(this);
LinearLayout lLay= new LinarLayout(this);
txtView2 = new TextView(this);
lLay.addView(txtView2);
row.addview(txtView1);
row.addview(lLay,220,Layout.Wrap_Content);

试试这个,因为它解决了我的问题。

txtView1 = new TextView(this);
LinearLayout lLay= new LinarLayout(this);
txtView2 = new TextView(this);
lLay.addView(txtView2);
row.addview(txtView1);
row.addview(lLay,220,Layout.Wrap_Content);

just try this coz it solve my problem.

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