Top "Android-alarms" questions

Android alarms is the facility provided by Android through AlarmManager to start an intent at a given time (by passing a pending intent).

How to turn off an alarm programmatically on Android

I have an Android application. When the app is running, the alarm should be muted or disabled. After closing the …

android alarmmanager android-alarms
Alarm Manager issue in Android 6.0 Doze mode

I've made an app that always worked until Android 6.0. I think it's the Doze feature that it's not allowing my …

android alarmmanager android-pendingintent android-alarms android-doze-and-standby
Controlling the Alarm icon in status bar

This question relates to Android versions pre-Lollipop. For Lollipop API, check related question: Lollipop API for controlling the Alarm icon …

android alarmmanager alarm android-alarms undocumented-behavior
How can I set exact, repeating alarms in Android 4.4?

Right now, I am setting alarms like this: AlarmManager manager = (AlarmManager) getSystemService(Context.ALARM_SERVICE); Intent intent = new Intent(context, …

java android android-alarms
Setting a repeating alarm in android

I am trying to set a repeating alarm in android that eventually will go up at a user specified time. …

java android android-alarms
calendar.set(Calendar.HOUR_OF_DAY, alarmHour); is not working. What am I doing wrong?

I am setting an alarm for which I take the Hour and Minutes from a TextView and the AM/PM …

android android-alarms android-calendar
Repeat alarm everyday at specific time (Alarm manager)

Hi I want my application to run at specific time daily. for this I am using below code. But it …

android android-alarms
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
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