Android 上的定时器功能不起作用?
我正在尝试使用 BroadcastReceiver 一次投注纬度和经度三分钟。但是我的计时器无法通过添加结果函数来工作。没有 result(),它的工作。我不知道...任何人都可以纠正我的错误。
I am trying to bet the latitude and longitude using BroadcastReceiver for three minutes an once. But my timer is not working by adding the result function.without result(),its working. I don't know...Anybody kindly rectify my error.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您的问题是计时器间隔
30 分钟 = 1800000 毫秒
,而您使用的是180000 毫秒
,即3 分钟
。看来你遇到了一些问题。你可以检查一下这个每 5 秒有效一次,
I think your problem is the Timer interval
30 minutes = 1800000 milliseconds
and you are using180000 milliseconds
which is3 minutes
.Seems you are having some problem. You can check this which works for every 5 seconds,