Android development help needed, is this possible?
developer.android.com·21h·
Discuss: r/programming
Flag this post


public



class
AlarmManager

extends [Object](https://developer.android.com/reference/java/lang/Object) ``


This class provides access to the system alarm services. These allow you to schedule your application to be run at some point in the future. When an alarm goes off, the [Intent](https://developer.android.com/reference/android/content/Intent) that had been registered for it is broadcast by the system, automatically starting the target application if it is not already running. Registered alarms are retained while the device is asleep (and can optionally wake the device up if they go off during that time), but will be cleared if it is turned off and rebooted.

The Alarm Manager holds a CPU wake lock as long as the alarm receiver’s onReceive() method is …

Similar Posts

Loading similar posts...