如何获取暂停活动的实例?

发布于 2024-12-07 02:54:33 字数 71 浏览 0 评论 0原文

有什么方法可以获取暂停的 Activity 的实例吗?我需要在另一个 Activity 暂停时运行公共方法,并且无法使用静态方法

Is there any way to get the instance of a paused Activity? I need to run a public method from another Activity when it is paused, and there is no way I can use a static method

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

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

发布评论

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

评论(2

嗳卜坏 2024-12-14 02:54:33

从 Android 的角度来看,这是没有意义的。如果它会影响 Activity 的 UI,则将信息集中在外部类中,并在暂停的 Activity 的 onResume 中读取它。

That doesn't make sense from the Android perspective. If it's something that'll affect the Activity's UI, then centralize the information in an external class and read it inside paused Activity's onResume.

策马西风 2024-12-14 02:54:33

您可以使用 onPause() 方法中的唯一键将活动的实例存储在哈希表中,并在需要时检索它并进行处理。检查考虑指针异常,因为 dvm/a-os 可能已经杀死了该活动,如果它认为这是最好的事情。

我不确定这是否有效,但我猜官方方法可能是:您可以尝试使用 ContextManager/ActivityManager api 检索所有活动,并迭代每个 n 执行所需的操作。

You can store the instance of an activity in a Hashtable with a unique key in the onPause() method(), and retrieve it whenever you want it and work on it. of check for mull pointer exception coz dvm/a-os may have killed the activity if it thinks thats the best thing to do.

I am not sure if this will work, but the official method i guess could be: you can try retrieving all the activities using ContextManager/ActivityManager apis and iterate through each n do the needful.

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