For my game, I\'d like the Android back button to take you to the pause menu, instead of minimizing the game. From what I\'ve googled, I know I need to call
You can use Gdx.input.isKeyPressed(Keys.BACK) but if you want that Activity does not closes you can handle this as:
Gdx.input.setCatchBackKey(true);