【发布时间】:2016-07-09 22:20:46
【问题描述】:
我知道我可以使用 ImageTextButton,但出于某种原因,我只想向 ImageButton 添加一行,它是 Table 的子类。
我是这样尝试的:
ImageButton btn = new ImageButton(skin, "style");
Label lb = new Label(text, skin);
btn.row();
btn.add(lb);
标签不在图片下方,而是在图片旁边。
为什么row() 不像在常规表中那样开始新行?
【问题讨论】: