A popular issue in Android-dom is “where is cron?” The reference is to the cron utility in Linux, which runs commands on a pre-determined schedule, such as every hour. While Android does not have cron per se, it does have a similar facility, in the form of AlarmManager. AlarmManager differs from cron in several ways, most importantly:
- Whereas cron executes a command, AlarmManager broadcasts an Intent. So, to be woken up by AlarmManager, you need to provide it with an Intent that will cause the right bit of your code to get control when the alarm time rolls around.
- The receiver of this Intent must be a BroadcastReceiver registered in your manifest to be filtering on the desired Intent. The cron utility, on the other hand, lets you run arbitrary commands.
- You infrequently have to worry about a PC falling asleep while executing a cron job. On the other hand, this happens a lot with AlarmManager.
You may, if you wish, have AlarmManager wake up the device when an alarm time arrives. In that case, AlarmManager will ensure that your BroadcastReceiver is awake long enough for it to process onReceive()…and nothing more. Since you are not supposed to do a lot of work in the BroadcastReceiver and cannot spawn threads from it, your most likely course of action will be to pass control from the BroadcastReceiver to a Service that is managing a background thread. The work can get done in the thread; the BroadcastReceiver’s thread can return control to Android quickly.
The catch is that the work on the background thread may take too long. AlarmManager has no way of knowing your work is taking too long, and it might allow the device to fall back asleep before your work wraps up.
To combat this, you need to hold a WakeLock.
A WakeLock, obtained from the PowerManager system service, allows you to tell Android to keep the CPU running for a period of time. You want to hold a WakeLock long enough to get your work done and short enough such that you do not use a lot of power. As importantly, you need to make sure you acquire your WakeLock in your BroadcastReceiver, while the CPU is guaranteed by AlarmManager to be still running. The Service is then responsible for releasing the WakeLock when it is done with the background work.
You may also need to hold a WakeLock in other scenarios, particularly if you are playing back media. Android does not keep the device awake and running just because media is being played — you may want to offer your users a configuration option to keep the device awake during playback, and if they select that option, hold an appropriate WakeLock while you are playing the video clip or whatnot.
This is terribly complicated, and over time, we will develop patterns and frameworks that will help with this sort of thing.
To learn more about AlarmManager and WakeLocks:
- There are many threads on [android-developers] about this, including this one that triggered this blog post
- You can download some sample code off of this page that demonstrates this technique (scroll down to the Source Code link; the sample code is in SystemServices/Alarm)
I enjoyed reading this post about Wake Up with the Alarm | AndroidGuys. Really interesting. I will come back to visit this blog again.
Thanks for this great article. I enjoyed reading this post about Wake Up with the Alarm | AndroidGuys. You have great insights about this issue.
Thanks for this great article. I enjoyed reading this post about Wake Up with the Alarm | AndroidGuys. You have great insights about this issue.
so, I notice that a lot of this is over a year old. Are there any recent developments that make this whole process easier, or are we still bound to do it this way?
I enjoyed reading this post. You know a lot about Wake Up with the Alarm | AndroidGuys. Thanks for these great insights.
That’s a good article about Wake Up with the Alarm | AndroidGuys. Thanks for the info.
That’s a good article about Don't Drink Lighter Fluid | Redneck Bar & Grill. Thanks for the info.
Always enjoy reading Mark's articles. He is a very descriptive person and does not patronize you with long and complex scenarios.
I've also purchased his PDF books but not had time to go through them all yet. As I am in need of Service / Alarm style event then I think it's time I buried my nose into the Advanced book :D
Thanks for this interesting info. That’s a good article about Wake Up with the Alarm | AndroidGuys.
I was wondering about Wake Up with the Alarm | AndroidGuys. I was looking for this information for a long time. Thanks for this post!
i`m searching for, to schedule the task that is after selecting the time from Time Picker Preference(or Dialog picker preference)Â photo slide show will be started automatically on that time but i`m unable to write the code. Because, i`m new to android, so please help me
Hello, its pleasant post concerning media print, we all know media is
a enormous source of facts.
Ian Howe, who is the President of 505 Games, spoke
about VR and what made this deal appealing to them. If VR goes the way of social
media, it will come closest to holding real-life conversations.
Play – Station VR certainly has an advantage over a platform like Oculus simply because of the brands and IP that people already associate with Play – Station.