标签: android libgdx
我在ScrollPane中有Table,我想在添加项目时向下滚动表格。我做的时候:
table.add(...); scrollPane.setScrollY(table.getHeight());
它滚动倒数第二个元素。如何解决?
答案 0 :(得分:1)
试试这个:
scrollPane.setScrollPercentY(100);