在Android的activity中调用onResume

发布于 2024-11-07 02:13:30 字数 86 浏览 5 评论 0原文

在活动的过程中通过调用 this.OnResume() 强制 onResume 事件可以吗?或者我应该实现另一个由 OnResume 和第一个成员调用的过程?

is it ok in an activity's procedure to force the onResume event by calling this.OnResume() ? Or should I implement another procedure that's called by both OnResume and by the first member ?

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

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

发布评论

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

评论(2

双手揣兜 2024-11-14 02:13:30

实现在重写 onResume() 时调用的另一个过程。后者不打算由您调用,它是一种方便的方法,可以在 Activity 的状态更改为 resume 时整理或准备 Activity。很像 onCreate()onDestroy()

Implement another procedure that's called in your override of onResume(). The latter is not intended to be called by you, it's a convenience method that tidies up or readies the activity when its state changes to resume. A lot like onCreate() through to onDestroy().

失而复得 2024-11-14 02:13:30

@SK9 所说的,而且特别是因为当您重写 onResume 方法时,您必须调用 super.onResume(),因此您无法控制后台发生的情况(视图刷新等) 。

What @SK9 said, but also especially because you must call super.onResume() when you override the onResume method, so you're not in control what happens in the background (views getting refreshed, etc).

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