我有Dialog
Label
和TextButton
。 TextButton
显示正确,但我看不到Label
文字。但是,如果Dialog
中的文字较长,则Label
会变大,如果文字较短,则会变小。
我使用的代码:
Dialog dialog = new Dialog("Warning", uiSkin) {
public void result(Object obj) {
System.out.println("result "+obj);
}
};
Label warningLabel = new Label("Invalid data", uiSkin);
dialog.text(warningLabel);
dialog.setMovable(false);
TextButton warningButton = new TextButton("OK", uiSkin, "small");
dialog.button(warningButton);
dialog.key(Keys.ENTER, true);
if(!password.getText().equals(passwordRepeat.getText())){
dialog.show(signupStage);
}