Android - How To Override the “Back” button so it doesn't Finish() my Activity?

后端 未结 10 1136
粉色の甜心
粉色の甜心 2020-11-22 08:07

I currently have an Activity that when it gets displayed a Notification will also get displayed in the Notification bar.

This is so that when the User presses home a

10条回答
  •  伪装坚强ぢ
    2020-11-22 08:33

    It was easier to implement it only with one line of code:

    @Override
    public void onBackPressed() {
       moveTaskToBack(true);
    }
    

提交回复
热议问题