ScheduledExecutorService
will only work if you have some component, such as a Service
, running all of the time. Hence, it should only be used in cases where the component would be in memory for other reasons, adding value to the user. Having a component be in memory solely to watch the clock tick by is wasteful and one of the reasons why users attack developers with task killers and such.
AlarmManager
is an OS-supplied system service. It can start up a component when the time rolls around. Hence, you do not need to have the component running.
In my case, I need to run a little bit of code to check for new data every night and create a new notification if there is new data.
This is a clear scenario for AlarmManager
.