views:

39

answers:

1

The context for my question is that of an alarm application but I would like to know in the general case. How do you schedule your application to turn on at a point in time in the future? For instance, if I set an alarm to play a noise tomorrow at 8:00 am how do I make this happen if the device has closed my app?

*editted to correct spelling/punctuation.

+1  A: 

You could use ApplicationManager.scheduleApplication()

Marc Novakowski
Thanks. This is exactly what I was looking for.
Andrew Hubbs