1

对不起,密集的标题:)

假设我有一个像这样创建的图像 Actor:

Image image = new Image(texture);
image.setScale(2);

将其添加到表格中可以正常工作,并且可以正确显示,但是图像的缩放不会扩大表格的大小。

table.add(image);
table.add(anotherimage);
//these images are now overlapping because 'image' is too large for its cell

这是一个已知问题吗,有什么办法可以解决吗?

4

2 回答 2

5

尝试设置图像单元格的宽度/高度,使其适合表格。

于 2014-03-24T18:29:53.887 回答
0
table.add(image).fill().expand();

fill() 是让图像填充单元格。

expand() 用于使单元格在可用空间上扩展。

于 2014-06-24T17:37:10.160 回答