Button
当我的一些事件被触发时,我需要能够改变 Libgdx 的外观。
这是我的按钮的声明:
Button googleButton = new Button(skin.getDrawable("google_sign_in"));
以下是我尝试过的事情:
googleButton.setBackground(skin.getDrawable("google_sign_out"));
googleButton.invalidate();
googleButton.setChecked(true);
googleButton.invalidate();
googleButton.getStyle().up = skin.getDrawable("google_sign_out");
googleButton.invalidate();
我已经做了很多搜索,但我找不到答案。有人可以告诉我这样做的正确方法吗?