How To Cancel Alarmclock That Was Created By My App?
I am creating an app which intends to create an alarm just to wake up the user. I did not use the AlarmManager because I do not need the app to run any code or function once the al
Solution 1:
Since the AlarmClock
class doesn't expose a public action for this, there is no supported way to do this programmatically. The expectation is probably that users will do it via the UI. If you want more control, use AlaramManager
and set/clear your own alarms.
Post a Comment for "How To Cancel Alarmclock That Was Created By My App?"