onBackPressed() not working

后端 未结 5 967
独厮守ぢ
独厮守ぢ 2021-01-07 11:05

I\'m trying to close my app on a back button click. From the main screen, the back button takes you to a credits screen. From that credits screen, I want to close the app w

5条回答
  •  一整个雨季
    2021-01-07 11:40

    Try the following solution?

    @Override
    public boolean onKeyDown(int keyCode, KeyEvent event) {
        if (keyCode == KeyEvent.KEYCODE_BACK) {
            finish();
            return true;
        }
        return super.onKeyDown(keyCode, event);
    }
    

提交回复
热议问题