Top "Alarmmanager" questions

Android class providing access to the system alarm services.

Unable to check if alarm has been set by AlarmManager

I am checking if the alarm has already been set by the AlarmManager using this answer. Following is my code …

android android-intent service alarmmanager
AlarmManager is not triggered when App is closed

I have some in-App notification to show to users at a specific time but nothing is shown when the App …

android notifications alarmmanager in-app
SharedPreferences in BroadcastReceiver seems to not update?

I have a Activity which updates a string in the SharedPreferences. SharedPreferences settings = PreferenceManager.getDefaultSharedPreferences(this); SharedPreferences.Editor editor = settings.…

android broadcastreceiver sharedpreferences alarmmanager
Android: why did the Alarm notification stop after system reboot

I am developing an android application that should fire an alarm five times a day: - the times in each …

android android-manifest broadcastreceiver alarmmanager android-alarms
Repeat Alarms on Every Monday in Android using AlarmManager/BroadcastReceiver

I want to repeat my task on every Monday at 09:00AM & 05:00 PM. I used following code for that but …

android broadcastreceiver alarmmanager android-alarms repeatingalarm
How to get requestCode from pending intent at the time of alarm in android

Is it possible to get requestCode at the time of intent either in Receiver class or Activity Class? and this …

android android-intent alarmmanager alarm android-pendingintent
AlarmManager object after turning off and on the phone

In my app, I set an alarm AlarmManager alarmMgr = (AlarmManager)context.getSystemService(Context.ALARM_SERVICE); ... PendingIntent pendingIntent = PendingIntent.getBroadcast(context, …

android alarmmanager android-pendingintent broadcasting
Lollipop API for controlling the Alarm icon in status bar

This is a Lollipop-specific question, since the API has changed. To find out how to do this on earlier versions, …

android alarmmanager alarm android-alarms undocumented-behavior
Android - How to set system Alarm Clock from my own app

I would like to set a normal, Android alarm clock in my app - the one in the default Android …

android alarmmanager alarm
AlarmManager firing alarm past the time it was set on the same day, setRepeating

So basically I have this code, time returns 24hour time and repeats the alarm daily. public setAlarm(String time, Context …

android alarmmanager android-alarms repeatingalarm