缩小“ Forgot Password :(”)按钮后,似乎其单元格没有按比例缩小。其结果是单元格内容位于单元格的左下角。我需要将其与中心对齐,或者我需要将单元缩小到内容的大小。

这是屏幕截图:java - libgdx align不起作用-LMLPHP

和代码:

 Table tableRoot = new Table();
 tableRoot.setFillParent(true);
 tableRoot.padTop(40);
 tableRoot.align(Align.center);

 final Label hint = new Label("Wrong password", Utility.UI_SKIN, "default-text");
 hint.setAlignment(Align.center);
 hint.setFontScale(1.3f);

 final Label question = new Label("Return to login screen?", Utility.UI_SKIN, "default-text");
 question.setAlignment(Align.center);

 Table table = new Table();
 final TextButton yesButton = new TextButton("Yes", Utility.UI_SKIN, "login-window-button");
 final TextButton forgotButton = new TextButton("Forgot password:(", Utility.UI_SKIN, "login-window-button");
 forgotButton.setTransform(true);
 forgotButton.setScale(0.7f);

 table.add(yesButton).pad(10).row();
 table.add(forgotButton).pad(10).align(Align.center); //align here does not work

 tableRoot.add(hint).growX().row();
 tableRoot.add().grow().row();
 tableRoot.add(question).growX().padBottom(20).row();
 tableRoot.add(table).growX().row();
 tableRoot.add().grow().row();
 tableRoot.add().grow().row();
 tableRoot.pack();


我做错了什么或错过了什么?

最佳答案

缩放Actor不会调整其首选大小。您可以通过多种方式面对这一问题,选择最喜欢的一种。


围绕演员的中心缩放演员。致电forgotButton.setOrigin(Align.center)
缩放按钮的字体,而不是按钮。 forgotButton.getLabel().setFontScale(.7f)
调整表格单元格的大小:table.add(forgotButton).pad(10).prefWidth(forgotButton.getPrefWith() * .7f)

07-24 19:59