Android onAppHasFocus onAppLosesFocus

发布于 2024-11-27 02:50:59 字数 165 浏览 1 评论 0原文

预先感谢您对这个问题的帮助,

我想知道我的应用程序何时获得和失去焦点。

我知道如何判断特定活动窗口何时获得或失去焦点,但如果主活动窗口有打开的子窗口,则主窗口失去焦点

我想知道我的应用程序何时完全失去焦点(包括其子活动)并获得焦点完全失焦后对焦,

谢谢

Thanks in advance for your help with this question

I want to know when my app gains and loses focus.

I know how to tell when a specific activity window gains or loses focus, but if the main activity window has sub windows that open, the main window loses focus

I want to know when my app loses focus entirely, including it's sub activities, and gains focus after it was entirely out of focus

thanks

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

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

发布评论

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

评论(1

哆啦不做梦 2024-12-04 02:50:59

检查

onPause

onResume


  1. 扩展应用程序
  2. 中为每个活动创建一个布尔值
  3. 在onPause() / 每个活动的 onDestroy() 将其布尔值设置为 false 并调用应用程序的 checkIfAllDead()

checkIfAllDead() 检查所有布尔值是否为 false...

Check

onPause

and

onResume


  1. Extend the Application
  2. Create for each activity a boolean inside
  3. onPause() / onDestroy() of each activity sets its boolean to false and calls the Application's checkIfAllDead()

checkIfAllDead() checks if all the booleans are false...

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