作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在考虑一种类似 4 图片 1 Word 的游戏回答方法,其中有一个空白,并显示一组字符供玩家单击以输入可能的答案。我只是在想如何才能使显示的文本按钮数量与单词的字符数量(单词的长度)相同?
最佳答案
// for BitmapFont API < 1.5.6
float width = font.getBounds(yourWord).width;
float edgeWidth = 5f; // indention
yourTextButton.setWidth(width + 2 * edgeWidth);
// for BitmapFont API >= 1.5.6
GlyphLayout layout = new GlyphLayout();
layout.setText(yourWord);
float width = layout.width;
float edgeWidth = 5f; // indention
yourTextButton.setWidth(width + 2 * edgeWidth);
您还可以使用 Table对于任务,它应该自行计算大小
Table table = new Table();
TextButton textButton = new TextButton(yourWord, skin);
table.add(textButton);
关于java - LibGDX:根据单词的长度在屏幕上创建文本按钮的数量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59826957/
我是一名优秀的程序员,十分优秀!