Android TableLayout 拉伸单元格内容
这就是问题所在。
我正在创建一个包含一些图像按钮的 TableLayout。
每行有 3 个 ImageButton,但它们的宽度不等于表格的宽度。 他们的身高也同样如此。
我想要做的就是将 ImageButtons 放在它们所在的单元格内。
即使我已经在 XML 文件中指定了它们的大小,它
auto:StretchColumns="*"
也会拉伸 ImageButtons(单元格数据)。
另外,是否有任何选项可以对行执行相同的操作?
比如自动计算单元格的边距。
Here is the issue.
I'm creating a TableLayout containing a some ImageButtons.
Each row has 3 ImageButtons but their width does not equal the width of the table.
Also the same applies for their height.
All I want to do is center the ImageButtons within the cell they are in.
The
auto:StretchColumns="*"
stretches the ImageButtons (cell data), even I have specified their size in the XML file.
Also, are there any options to do the same for the rows?
Something like calculating the margins of the cells automatically.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您是否尝试过为 ImageButton 设置
android:layout_gravity="center"
?或者,您可以将每个
ImageButton
包装在LinearLayout
中,如下所示:Have you tried setting the
android:layout_gravity="center"
for the ImageButtons?Alternatively, you could wrap each
ImageButton
in aLinearLayout
like this:表布局的子级不必只是 TableRow。表布局支持所有类型的子级,包括 LinearLayout、TextView、ImageButton 等。
不要将图像按钮包装在 TableRow 中。将其插入为一行。
要将 3 个 ImageButtons 放在一行中,请使用带有
android:orientation="horizontal"
的 LinearLayout添加接下来的两个具有相同权重的图像按钮,以使按钮均匀地划分该行。
Children of the Table Layout do not have to be only TableRow. The Table Layout supports children of all types including LinearLayout, TextView, ImageButton, etc.
Do not wrap your image button in a TableRow. Insert it as a row.
To put 3 ImageButtons in one row use a LinearLayout with
android:orientation="horizontal"
Add the next two image buttons with the same weight to make the buttons divide the row evenly.