Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Button ClickListener is not working in LibGDX game

I am developing an Android game using LibGDX. There are 4 buttons in a menu screen, but the ClickListener of these buttons is not working.

// retrieve the custom skin for our 2D widgets
Skin skin = super.getSkin();

// create the table actor and add it to the stage
table = new Table( skin );
table.width = stage.width();
table.height = stage.height();
stage.addActor( table );

// retrieve the table's layout
TableLayout layout = table.getTableLayout();

// register the button "start game"
TextButton startGameButton = new TextButton( "Start game", skin );
startGameButton.addListener( new ClickListener() {
    @Override
    public void clicked(InputEvent event, float x, float y) {
        System.out.println("hiii");
        Assets.load();
        // game.getSoundManager().play( TyrianSound.CLICK );
        game.setScreen( new GameScreen(game) );
    }
} );

layout.register( "startGameButton", startGameButton );

How to activate the ClickListener of a button in LibGDX?

like image 256
sandee Avatar asked Jul 07 '12 08:07

sandee


2 Answers

You have to add the button to the stage and call

Gdx.input.setInputProcessor(stage);
like image 103
robinmag Avatar answered Nov 19 '22 06:11

robinmag


Instead of "click method" now it's "clicked method" (I think!), just in case someone faces the same problem I was facing when found this question:

startGameButton.addListener( new ClickListener() {              
    @Override
    public void clicked(InputEvent event, float x, float y) {
        game.setScreen( new GameScreen(game) );
    };
});
like image 20
nsacerdote Avatar answered Nov 19 '22 04:11

nsacerdote