我需要帮助无法自己解决这个问题如何更改libgdx中的ScrollPane宽度?因为现在我上传它的大小,我需要它在所有尺寸相同的宽度。
答案 0 :(得分:0)
您需要将容器放在ScrollPane
(例如Table
)内并设置所需的大小:
Table contentRoot = new Table();
ScrollPane scrollPane = new ScrollPane(contentRoot);
scrollPane.setSize(width, height);
您需要将上传的内容添加到容器(contentRoot
)。在这种情况下,ScrollPane
将保存大小并自动启用滚动条:
contentRoot.add(uploadedContent).row();