标签: android timertask wakelock
在我的应用程序中,我希望在特定时间执行某些操作(而不是延迟) 我来使用TimerTask,只要屏幕开启,它就能正常工作 我已经阅读了一些地方,我必须使用wakelock让它在屏幕关闭时工作 无处不在,我应该在wakelock call上设置onReceive(),但TimerTask没有此方法。 有没有我可以使用TimerTask设置唤醒锁(仅运行,我不想打开屏幕)的任何地方?或者我应该使用不同的方法?
TimerTask
wakelock
wakelock call
onReceive()
由于
答案 0 :(得分:0)
我完全赞同@aegean
AlarmManager是个不错的选择。
http://developer.android.com/intl/es/reference/android/app/AlarmManager.html
http://vikinghammer.com/2012/04/22/android-use-alarmmanager-instead-of-a-service-with-a-timertask/
此致