Override back button to act like home button

后端 未结 10 738
小鲜肉
小鲜肉 2020-11-22 08:38

On pressing the back button, I\'d like my application to go into the stopped state, rather than the destroyed state.

In the Android docs it states:

10条回答
  •  一个人的身影
    2020-11-22 09:01

    Override onBackPressed() after android 2.0. Such as

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

提交回复
热议问题