onBackPressed() not working

后端 未结 5 1066
独厮守ぢ
独厮守ぢ 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:50

    I don't get it. What onBackPressed() does is to call finish(). finish() is an Activity method, there's no way to "quit" your app, so to speak. Perhaps what you really want is to call finish() on the Activity that is starting the Credits activity. Inside the other activity:

       finish();
       startActivity(this, Credits.class);
    

提交回复
热议问题