android Activity 完成时间什么时候开始

发布于 2025-01-04 06:28:04 字数 344 浏览 0 评论 0原文

当我们调用activity.finish()时,下一个android生命周期方法会被执行吗?

1) 假设用户点击了一个按钮
onUserInteraction() 我们调用了 activity.finish()
该操作会分派到按钮的 onClicked 监听器吗?

2) 假设我们调用了 onStart() activity.finish() >
activity.OnResume() 会被调用吗?

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?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

转身以后 2025-01-11 06:28:04

当活动第一次加载时,事件被调用如下:

onCreate()
onStart()
onResume()

当您单击后退按钮或尝试完成()活动时,事件被调用如下:

onPause()
onStop()
onDestroy()

当您单击“电话”按钮时,活动将转到后台并返回到后台。调用以下事件:

onPause()
onStop()

退出电话拨号器 &将调用以下事件:

onRestart()
onStart()
onResume()

我希望现在清楚了,有关详细信息,请参阅此

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.

数理化全能战士 2025-01-11 06:28:04

当调用 Activity.finish() 时,为该 Activity 调用以下生命周期方法

onStop()
onDestroy()

Activity 实例将被销毁

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

onStop()
onDestroy()

Activity instance will be destroyed

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文