Android alarms is the facility provided by Android through AlarmManager to start an intent at a given time (by passing a pending intent).
I have an Android application. When the app is running, the alarm should be muted or disabled. After closing the …
android alarmmanager android-alarmsI'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-standbyThis 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-behaviorRight now, I am setting alarms like this: AlarmManager manager = (AlarmManager) getSystemService(Context.ALARM_SERVICE); Intent intent = new Intent(context, …
java android android-alarmsI am trying to set a repeating alarm in android that eventually will go up at a user specified time. …
java android android-alarmsI am setting an alarm for which I take the Hour and Minutes from a TextView and the AM/PM …
android android-alarms android-calendarHi I want my application to run at specific time daily. for this I am using below code. But it …
android android-alarmsI am developing an android application that should fire an alarm five times a day: - the times in each …
android android-manifest broadcastreceiver alarmmanager android-alarmsI 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 repeatingalarmThis 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