When does android activity finish starts

落花浮王杯 提交于 2019-12-21 03:02:51

问题


When we call activity.finish() will the next android life cycle method be executed?

1) Lets say user clicks on a button
onUserInteraction() we have called activity.finish()
will the action dispatched to the onClicked listener of the button?

2) lets say onStart() we have called activity.finish()
will activity.OnResume() be called?


回答1:


When the Activity first time loads the events are called as below:

onCreate()
onStart()
onResume()

When you click the back button OR try to finish() the activity the events are called as below:

onPause()
onStop()
onDestroy()

When you click on Phone button the Activity goes to the background & below events are called:

onPause()
onStop()

Exit the phone dialer & below events will be called:

onRestart()
onStart()
onResume()

I hope its clear now, for detail please see this.




回答2:


When activity.finish() is called following lifecycle methods are called for that activity

onStop()
onDestroy()

Activity instance will be destroyed



来源:https://stackoverflow.com/questions/9190118/when-does-android-activity-finish-starts

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!