当用户按下待机按钮时会调用哪些方法?
除了 onPause() 之外,当用户按下待机/睡眠按钮时是否还会运行任何回调? 就像按后退按钮时的 onBackPressed() 一样。
Other than onPause() are there any callbacks that run when the user presses the standby/sleep button?
Like onBackPressed() when pressing the back button.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以注册 ACTION_SCREEN_OFF 广播,但当屏幕自行超时时也会发送该广播。
You can register for ACTION_SCREEN_OFF broadcast, but that's also sent when the screen timeouts by itself.