我只使用
创建了2个按钮 table.addActor(new TextButton("Test Button_1", skin));
table.addActor(new TextButton("Test Button_2", skin));
如何删除Test Button_1或者我是否必须清除表格?
答案 0 :(得分:0)
要从布局窗口小部件(lw)中删除窗口小部件,您将获得lw&上的窗口小部件的索引。 :
exampleTable.getChildren().removeIndex(index)
;