Tagged Questions

Android class, providing access to the system alarm services

learn more… | top users | synonyms

25
votes
3answers
22k views

Android AlarmManager

Can someone please show me some sample code on how to use an AlarmManager in android. I have been playing around with some code for a few days and it just won't work. I need to trigger a block of ...
8
votes
1answer
2k views

Android: Get all PendingIntents set with AlarmManager

I'm setting an alarm like this: alarmManager.set(AlarmManager.RTC_WAKEUP, alarmTime, pendingEvent); I'm interested in removing all the alarms that where previously set, clearing them. Is there a ...
7
votes
1answer
2k views

Identify and cancel an alarm send to an AlarmManager

If I use the AlarmManager to schedule an alarm (a PendintIntent which should be send), how can I identify that alarm later to cancel it? Can I cancel all alarms scheduled by my app?
6
votes
2answers
545 views

What is the definition of asleep for an android device?

I'm using alarmManager.setInexactRepeating(AlarmManager.ELAPSED_REALTIME, 0, DURATION, broadcast); To schedule an repeating task that should only be executed if the device is not asleep. As I ...
5
votes
2answers
1k views

Android AlarmManager - RTC_WAKEUP vs ELAPSED_REALTIME_WAKEUP

Can someone explain to me the difference between AlarmManager.RTC_WAKEUP & AlarmManager.ELAPSED_REALTIME_WAKEUP. I have read the documentation but still don't really understand the implication of ...
4
votes
2answers
410 views

Android External App Install (on SD card), reload alarmmanager alarms on re-mount through receiver

I'm developing an android app that I want to allow users to install on their SD card (http://developer.android.com/guide/appendix/install-location.html). However, the app has some Alarms created ...
4
votes
4answers
2k views

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 working fine for months, but I recently added a feature that displays a notification when there is ...
4
votes
1answer
1k views

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 thread but it wasn't the right solution because of: battery consumption ...
4
votes
1answer
5k views

Using Alarmmanager to start a service at specific time

I have searched a lot of places but couldnt find a clean sequential explanation of how to start a service (or if thats not possible then an activity) at a specific time daily using the AlarmManager?? ...
3
votes
1answer
49 views

Android AlarmManager firing at wrong times

I am setting an alarm with alarm manager to run at 6PM. If it is already 6PM, I want it to run the next day at 6PM. AlarmManager manager = (AlarmManager) ...
3
votes
1answer
60 views

How to add a alarm dynamically through code?

I am developing an application to pass a value to alarm through code. How can I make it possible. Can I get the intent code and to pass the value to set an alarm?
3
votes
1answer
303 views

How to keep a TCP connection established indefinitely?

I need to keep a TCP connection established indefinitely (as far as possible). Is not an own server so we cannot change the way it works. This server needs some kind on ping each minute to know that ...
3
votes
3answers
304 views

Difference between AlarmManager and ScheduledExecutorService

Besides setting and exact time (i.e. midnight) versus setting a delay (i.e. 24 hours), what's the difference between using AlarmManager and ScheduledExecutorService to run a task periodically? In my ...
3
votes
1answer
108 views

Which type of service in Android will use more system resources

Would it be better to have a service that is continually running a timer and executing a task every five seconds. Or would it be more efficient to have an alarm manager starting the service every ...
3
votes
2answers
357 views

Set an Alarm from My application

I want to create an alarm object from my application. I am writing a To-Do application which will have an option to set an Alarm on the phone. I wanna set the Date and Time and also the Label for the ...
3
votes
1answer
136 views

What happens when I start an alarm twice?

I'm Jumping trough hoops (well, it's not that complicated ofcourse) to avoid starting an alarm twice. The basic code goes like this: AlarmManager ...
3
votes
2answers
4k views

Alarm Manager Example

I want to implement a schedule function in my project. So I Googled for an Alarm manager program but I can`t find any examples. Can anyone help me with a basic alarm manager program?
3
votes
3answers
2k views

How can I correctly pass unique extras to a pending intent?

Hey Guys, I am having a problem with the alarmManager and the pending intent with extras that will go along with it. If I set multiple alarms, They will go off however the extras stay the same. I ...
3
votes
1answer
2k views

android: running a background task using AlarmManager

I am writing an app which needs to periodically check the server for new messages and notify the user. I have seen some examples using AlarmManager to hit a BroadcastReciever which seems like the ...
3
votes
1answer
5k views

Calling startActivity() from outside of an Activity?

I'm using an AlarmManager to trigger an intent that broadcasts a signal. The following is my code: AlarmManager mgr = (AlarmManager) getSystemService(Context.ALARM_SERVICE); Intent i = new ...
3
votes
2answers
4k views

AlarmManager and BroadcastReceiver instead of Service - is that bad ? (Timeout problem)

BACKGROUND INFO: I need to update some data from the web, about every hour or so, even when my app is closed. The update of the data itself takes about 40 seconds to 1 minute. It is then saved as a ...
3
votes
1answer
923 views

Android - AlarmManager recovery

Thanks to TasKiller I have reliable way to shutdown updates coming to my AppWidget from the AlarmManager! Now, sarcasm aside, how do I recover from such event? So far I only see that the Alerts are ...
2
votes
0answers
49 views

Alarm manager stops unexpectedly

I have created a clock widget with some nice backgrounds. I use Alarm Manager to update time and background every 1 minute. But it stops working after few hours, means I can run that widget, I also ...
2
votes
1answer
66 views

passing intent extra to android broadcast reciever

I have created a alarmreciever class which is used as broadcast reciever for alarm. The issue is that i need to send some values from the class which is setting the alarm to the broadcast reciever ...
2
votes
1answer
40 views

Does Android AlarmManager handle daylight saving changes?

I'm building an alarm clock app in Android. Does AlarmManager automatically handle clock changes between summertime and wintertime or do I need to manage that explicitly? edit: If an alarm is set ...
2
votes
1answer
254 views

Repeat scheduled tasks on selected days in Android sdk alarm manager

I have tried to do this without bothering the experts and have read numerous threads here and on other sites. It is clearly my brain not understanding what needs to be done in order for this to work. ...
2
votes
2answers
225 views

AppWidget alarmmanager not updating

So, I've got a widget, I want it to update every 60 seconds. When the widget is first added to the homescreen, it runs its update function just fine. Beyond that it's supposed to start an ...
2
votes
1answer
150 views

How to set more than one alarms at a time in android?

I am making a small app where I have to set alarm from array but only one alarm is set and working at a time which is at last position of array why it is behaving like this following is my code ...
2
votes
1answer
105 views

How to set title for android notification, using alarm manager?

I am setting an alarm using an AlarmManager. The AlarmManager is set with the date that i parse. I have a getter and setter class that i use to pull the release dates and the name of the items ...
2
votes
1answer
74 views

Run Command/Service on first occassion of day

I'm writing a simple Widget for Android which displays information which changes for every day. So the widget needs to be refreshed on midnight. The whole refreshing is implemented as a service and ...
2
votes
1answer
106 views

Android AlarmManager, how to send intent every 3 days?

I am using this to launch an Intent to trigger a reciever... How would i go about setting this so that every 3 days it sends the intent?? AlarmManager am = (AlarmManager)getSystemService(alarm); ...
2
votes
1answer
214 views

Android: Save android.net.Uri object to Database

What i m trying to do is get the selected ringtone from the user, set an AlarmManager alarm to play that ringtone when the alarm goes Off. but I need to save the ringtone in the database so I can ...
2
votes
1answer
397 views

Allowing the phone to sleep while using RTC alarm on Android

I've been seeing some strange issues using the Alarm manager in Android, despite the fact that I'm using RTC (non Wakeup) the phone will reliably send the PendingIntents on the correct repeating ...
2
votes
1answer
939 views

how do i set an alarm manager to fire every on specific day of week and time in android?

for example i want to have an alarm that will fire every sunday at noon.... how would i do this? thanks in advance
2
votes
1answer
757 views

Android AlarmManager in a Broadcastreceiver

I have braodcastreceiver, that broadcast receiver shall schedule an alarm. Usually I would do AlarmManager am = (AlarmManager) getSystemService(ALARM_SERVICE); am.set(AlarmManager.RTC, time, ...
2
votes
1answer
284 views

Best moment/location for setting an AlarmManager

My application shows content for a site that also has a notification system. I want to show if there are new notifications, and I am using an AlarmManager that calls an IntentService. My question is: ...
2
votes
1answer
224 views

can i wake up my android when it is not plugged in and sleeping?

i have made an app that allows one to listen to the radio. and have implemented an alarm so that i can have the radio play when the alarm goes off. i am using the alarmManager and RTC_wakeup and it ...
2
votes
2answers
735 views

Clarification of AlarmManager behavior in Android

I see all the examples of AlarmManager being set by an Activity. My question is this: If my application sets a recurring AlarmManager, does that persist even after the application that started is is ...
2
votes
1answer
264 views

How to inspect all alarms defined in the AlarmManager on the system?

I suspect there are applications on my Android system that use the AlarmManager way too agressively (eg. exact repeating, instead of inexact repeating, etc.). Is there a way to inspect all alarms set ...
2
votes
1answer
1k views

Using AlarmManager to update widgets manually

As stated in the Android Dev Guide, if you want a widget to update more often you should use the AlarmManager to set alarms that do not wake the device. In principle: do not use the standard ...
2
votes
1answer
355 views

Best Practices for developing an Activity with a background Service

My Application has an Activity for the UI and a Service for background polling fun. Seems like standard fare. Can AlarmManager trigger the Service Intent without Activity OnCreate being called? Is ...
2
votes
1answer
167 views

Starting service with an initial value

I am trying to get a reminder/alarm Service` working in my note/todo app. I am able to set a reminder for a particular item and the alarm triggers and displays a notification successfully. My ...
2
votes
1answer
4k views

Use alarmManager and service to perform schedule notification only during specific time period

I'm building an app that will trigger notifications at specific time-intervals during the users waking hours. I have an alarmManager running inside of a service. The service is explicitly started ...
2
votes
2answers
1k views

How to check if alarm is set

I'm trying to check if my alarm is active or not. The alarmIsSet method will return false before the alarm is set, true when the alarm is set. So far so good, however, after the alarm i canceled ...
2
votes
0answers
370 views

Develop Alarm Application

I'd like develop an Alarm Application. The application should work like this: launch it the activity show me the time I can set the alarm I can close the application when the alarm time comes , it ...
2
votes
1answer
1k views

set the time in Alarm manager Android - alarm fired instantly [closed]

Possible Duplicate: Why is my android alarm manager firing instantly? I have this code which will call alarm notification public static Calendar cal = Calendar.getInstance(); ...
2
votes
2answers
2k views

How to schedule my android app to do something every hour

I want my app to access database every hour and read next record from the table then update desctop widget and send notification. I know that there is AlarmManager which I can use to register my ...
2
votes
2answers
1k views

Running Code On First Run of Android App

I have a new earthquake notification android app thats in it's initial release version. I have a problem currently. My app has a service running in background, this schedules itself to run every X ...
2
votes
2answers
732 views

How to reschedule Alarm Manager on Preference Change

I have an Android Service. When a phone boots up, a broadcast receiver receives a notification and it schedules the service to run repeatedly at a gap of X minutes. Henceforth After every X minutes ...
2
votes
1answer
982 views

Is AlarmManager.setRepeating idempotent?

In my android app, I'm setting an alarm that I want to occur repeatedly, hence using AlarmManager.setRepeating(). I don't want to keep track of whether the alarm is set myself (sounds like a bad idea ...

1 2 3 4 5 8