onBackPressed() not working

后端 未结 5 1046
独厮守ぢ
独厮守ぢ 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条回答
  •  Happy的楠姐
    2021-01-07 11:49

    I don't know if you have found an answer yet, but have you tried super.onBackPressed from within your overriding method?

    If I were you, I would try:

    @Override
    public void onBackPressed() {
        super.onBackPressed();
        finish();
    }
    

提交回复
热议问题