确定 Android 中自上次用户活动以来的时间
您如何发现设备将来何时会进入睡眠状态?
或者,至少,最后一次用户活动是什么时候?
How do you discover when, in the future, the device is expected to sleep?
Or, at least, when the last user activity was?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你不知道。没有用于此目的的 API。在用户指定的超时时间过后以及所有未完成的 WakeLocks 被释放后,设备将进入睡眠状态。和无法预测设备何时进入睡眠状态,因为操作系统不知道这些
WakeLocks
何时会被释放。You don't. There is no API for this. The device will go to sleep after the user-specified timeout has elapsed and after all outstanding
WakeLocks
are released. It is impossible to predict when the device will go to sleep, since the OS has no idea when thoseWakeLocks
will be released.