我怎样才能有屏幕空闲侦听器?
我需要使用空闲侦听器来侦听用户正在使用应用程序或活动处于活动状态时处于空闲状态。 当用户超过十秒没有使用应用程序时,我需要做一些事情。 我怎样才能使它成为可能?
I need to use idle listener to listen the user is using the application or idle when the activity is alive.
I need to do something when the user is not using the application more than ten seconds.
How can i make it possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
以下是如何完成此任务的想法:
首先,您需要一个 Runnable(),它将在发生超时(例如 10 秒)时运行。下面是 Runnable():
现在,在您的活动中,您可以为 DoOnTimeOut 调用 postDelayed:
现在,最重要的部分是,当您看到用户交互时,您想要取消对 DoOnTimeOut 的调用,然后再次设置对下一个的调用10秒。这是用户交互活动的 Override 方法:
希望对您有所帮助。
Here is the idea how you can achieve this task:
Firstly you need a Runnable(), which will be Run when your timeout(e.g. 10 sec) occurs. Below is the Runnable():
Now, in your activity, you can call postDelayed for the DoOnTimeOut:
Now, most important part is that when you see user interaction, you want to cancel the call to DoOnTimeOut and then again set the call for next 10 sec. Here is the Override method of your Activity for User Interaction:
I hope it will be helpful for you.