如何获取暂停活动的实例?
有什么方法可以获取暂停的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
从 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.
您可以使用 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.