4

为什么我的TextButton,来自 libgdx 的点击没有响应?

我有一个按钮,这个按钮有一个监听器,但它没有响应。该按钮正在显示,但它不响应鼠标点击。

public MyStage extends Stage {
     ...
     next.addListener(new InputListener() {
        @Override
        public boolean touchDown(InputEvent event, float x, float y, int pointer, int button)
        {
            Gdx.app.log(ApothecaryGame.LOG, "Pressed: Next button.");
            return true;
        }
        @Override
        public void touchUp(InputEvent event, float x, float y, int pointer, int button) {
            Gdx.app.log( ApothecaryGame.LOG, "Released: Next button.");
            super.touchUp( event, x, y, pointer, button );
            nextPage();
        }
    } );
    this.addActor(next);
}
4

1 回答 1

15

将 ClickListener 添加到您的按钮。它看起来像这样。

button.addListener(new ClickListener() {
    public void clicked(InputEvent event, float x, float y) {
        // Do something interesting here...
    }
});

另外,请确保将舞台设置为输入处理器,否则它将看不到事件。

Gdx.input.setInputProcessor(stage);
于 2013-03-31T21:54:39.360 回答