Android 上的 3 x 3 网格,每个单元格中带有图像按钮

发布于 2024-09-16 12:10:12 字数 129 浏览 5 评论 0原文

我想要一个 3 列 3 行的网格,并且每个单元格(单元格中心)都有一个图像按钮。

我尝试使用 gridview 但无法修复行数。 我尝试使用表格布局和 3 个表格行,但我无法在运行时更改宽度/高度

有什么想法吗?

I want to have a grid with 3 columns and 3 rows and an image button in each cell (center of cell).

I tried with gridview but I can't fix the number of rows.
I tried with a tablelayout and 3 tablerows, but I can't change width/height at runtime

Any ideas?

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

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

发布评论

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

评论(1

痕至 2024-09-23 12:10:12

如果您使用的是表格布局,则只需对每个 ImageButton 执行以下操作:

this.setPadding(0, 0, 0, 0);
this.setScaleType(ScaleType.CENTER_INSIDE);

If you're using a tablelayout you just need to do the following on each ImageButton:

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