Activity is getting destroyed while pressing the home button

前端 未结 6 806
感动是毒
感动是毒 2020-12-19 03:50

In my application, when I press the home button the activity is going to onDestroy(). It suppose to be called onPause() method only right?

6条回答
  •  死守一世寂寞
    2020-12-19 04:17

    also check that you don't use the android:noHistory flag in your manifest for the Activity

    documentation: android:noHistory Whether or not the activity should be removed from the activity stack and finished (its finish() method called) when the user navigates away from it and it's no longer visible on screen

提交回复
热议问题