Top "Alarmmanager" questions

Android class providing access to the system alarm services.

AlarmManager - How to repeat an alarm at the top of every hour?

I want for an event to fire every hour (at 5:00, 6:00, 7:00, etc...). I tried with a persistent background service with a …

android repeat alarmmanager
Android notification at specific date

I have to create an app in which I must set a date and at that specific date at 9 O'clock, …

android alarmmanager android-notifications android-date
onPostExecute not being called in AsyncTask (Handler runtime exception)

I have an AsyncTask that fetches some data and then updates the UI with this new data. It has been …

android android-asynctask alarmmanager
How to use Android AlarmManager with small intervals like 1 minute?

I want to make some external service monitor and be notified on problems as fast as possible. I tried to …

android timer alarmmanager background-service
Repeat Alarm once in a week in android

I am trying to develop alarm functionality in a my app which runs on a week days specified by user …

android alarmmanager android-alarms repeatingalarm
AlarmManager setExact with WakefulBroadcastReceiver sometimes not exact

Using Android 19+ setExact in conjuction with WakefulBroadcastReceiver sometimes does not fire on time (can be a few seconds or so …

android alarmmanager
Android O and background limits prevents simple alarm notification

My own app uses the exact same technique as shown by Google I/O app of 2016. see source I need …

alarmmanager android-notifications wakeup android-8.0-oreo
Pending intent with ONE_SHOT flag

Currently I've got this code: public static void setupAlarm(Context context) { Intent myIntent = new Intent(context, Receiver.class); PendingIntent pendingIntent = …

android alarmmanager android-pendingintent
PendingIntent get requestCode

I use an AlarmManager to start a service. When i set up the AlarmManager i use the PendingIntent and use …

android notifications broadcastreceiver alarmmanager android-pendingintent
Stop the setrepeat of Android alarmmanager

I have created the alarm as shown below Intent intent = new Intent(this, Areceiver.class); PendingIntent sender = PendingIntent.getBroadcast(this, 1234567, …

android alarmmanager android-pendingintent