如何在不改变按钮大小的情况下改变按钮字体大小(在android中)?
我需要一个网格(由程序创建,而不是由 xml 创建) 大小相同的按钮。它们以不同的大小显示文本。 问题是当我将文本大小更改为较小的大小时, 然后该按钮会自动调整大小,使其小于其他按钮。
谢谢,
注意:创建网格时将按钮的 TableRow 添加到 一个TableLayout。按钮已创建并添加到 TableRow
tr.addView(bu, 36, 45);
I need to have a grid (created by program, not by xml)
of equally sized buttons. They display text in different sizes.
The problem is that when I change the text size to a smaller size,
then the button automatically resizes to be smaller than the others.
Thanks,
Note: the grid is created adding TableRows of buttons to
a TableLayout. The buttons are created and added to a TableRow
tr.addView(bu, 36, 45);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
添加填充 (
setPadding()
) 将扩展按钮,同时保持较小的字体大小。不过,决定添加多少填充量取决于您。Adding padding (
setPadding()
) will expand the button while keeping the font size small. Figuring out how much padding to add, though, is up to you.