我对表有一点问题。当我执行此操作时:
toolBar = new Table(Assets.instance.bg_skin);
toolBar.setBackground("bg_table");
toolBar.setFillParent(true);
toolBar.align(Align.top);
我将添加的演员对齐到顶部中心,但背景可绘制填充整个屏幕。
我的目标是在顶部设置一个工具栏
答案 0 :(得分:1)
添加完所有演员后,请尝试使用:
table.add().expand().fill();
添加一个占据屏幕空间其余部分的空单元格。
我想,但不确定,您也应该删除toolBar.align(Align.top);
。