如何设置内容上多个按钮的大小

发布于 2024-08-31 08:15:48 字数 194 浏览 1 评论 0原文

我使用三个按钮和列表视图。这三个按钮使用 TableLayoutTableRow 添加到布局中。第一个按钮占用了更多的内容空间,因此另外两个的尺寸会比第一个小。当应用程序运行时,它甚至不显示其他两个按钮。

如何使三个按钮的大小相等并在应用程序运行时显示所有按钮?请给我一些例子。

谢谢

I am using three buttons along with the list view.These three buttons are added to the layout using the TableLayout and TableRow.The first button takes more space on content, so the other two becomes smaller in size than first one. When the application runs, it doesn't even show the two other buttons.

How can I make the size of three buttons equal and display all of them when application runs?Give me some example please.

Thanks

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

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

发布评论

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

评论(1

北恋 2024-09-07 08:15:48

android:layout_span="3" 放在第一行的 TextView 上,以及第二行的 ListView 上。

从文档中:

列的宽度由该列中单元格最宽的行定义。

由于 TextView 和 ListView 都位于第一列中,因此第一列的宽度将与这两列中最宽的列一样宽。通过将layout_span 设置为3,底部的三个按钮将位于各自的单元格中,且宽度相等。

Put android:layout_span="3" on your TextView in the first row, and on your ListView in the second row.

From the documentation:

The width of a column is defined by the row with the widest cell in that column.

Since both the TextView and the ListView are in the first column, the first column is going to be as wide as the widest of those two. By setting the layout_span to 3, the three buttons at the bottom will be in their own cell with equal widths.

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