Android class, providing access to the system alarm services

learn more… | top users | synonyms

0
votes
1answer
40 views

AlarmManager Does Not Start Service

I've built an application which is supposed to send an SMS containing data usage at specified intervals - once when the application is first launched - then again once every minute (this has been ...
0
votes
1answer
11 views

Receive callback from AlarmManager while screen is locked

I am using the Android AlarmManager to receive events at a specific time. alarm_manager = (AlarmManager)getSystemService(ALARM_SERVICE); alarm_manager.set(AlarmManager.RTC_WAKEUP, ...
0
votes
0answers
20 views

Android: AlarmManager going off everytime I run the activity

I have an AlarmManager in my Android Application's MainActivity.java. The broadcast from this AlarmManager is received by a custom BroadcastReceiver which in turn triggers a notification. On clicking ...
0
votes
0answers
12 views

AlarmManager, TimePicker and Wifi control. How to?

Well, my application would display wifi information (still work in progress for this) and set with a time picker when the wifi turns on. The problem is that i don't know how to connect the button ...
1
vote
2answers
27 views

Can javascript in an html running on the Android set the alarm time of Android?

Can javascript in an html running on the Android get access to alarm manager interface ?
0
votes
1answer
15 views

What is the best way to display notifications with time? “.setWhen ()” or “AlarmManager”?

What is the best way to display notifications with time? ".setWhen()" or "AlarmManager"? I'm trying to create a function called "create alarm", this method creates a notification and sample 24 hours ...
0
votes
1answer
16 views

Android Alarm Based On a Time Stored in Shared Preferences

I'm building an android application which sends wifi usage data once a month via sms. Thus far I've managed to send the amount of wifi data usage via sms, save the date at which the application is ...
0
votes
0answers
15 views

Starting A Future Alarm Based on Today's Date (30+ days)

I'm looking for a simple method to start a future alarm based upon the date an application is first executed. I've attempted building something based on a few other SO examples - but I'm sure there is ...
0
votes
2answers
41 views

implementing monthly repeating alarms

I have an alarm which I need to execute every 30 days. To avoid issues with the phone being powered off I have decieded this should be calendar based. The way I'm attempting to design it is when the ...
-4
votes
1answer
46 views

Building 30 day alarm - need help proofreading due to difficulties testing 30 day alarm [closed]

I'm building an alarm set to reoccur every 30 days - due to the fact it would take several months to test this by myself - I was wondering if I could get a few extra sets of eyes to look things over ...
0
votes
1answer
14 views

How to set Scheduled notification in android

I want my app to throw a notification after 10 seconds even if the app is not running. I have made use of the AlarmManager but unable to get the notification at the desired time. I am able to get a ...
0
votes
1answer
18 views

PendingIntent throughout multiple Instances

I have implemented an Alarm class wich should set a new pending Intent and always overriwrite the old one. (I would rather stop/delete all old ones but I dont know how to) private void startAlarm(){ ...
0
votes
1answer
24 views

Confusion in using AlarmManager, intent while updating widget

I am new to Android development and Java and am trying to update my widget using AlarmManager but I am not able to fully understand why most of the tutorials do not update widgets in the following ...
0
votes
0answers
14 views

The notification to get closed after I open the app or delete a list item

I get a notification when a task is done on my app.I have a Reminder app. So when I get the notification I click on the notification which is in the notiftication status bar,and it works perfectly,the ...
-2
votes
1answer
24 views

context cannot be resolved to a variable - following 5 day alarm example [duplicate]

I'm attempting to set a reoccurring alarm example using code taken from the following SO example: Implementing an alarm every 5 days, code correct? However I'm getting an error stating "context ...
0
votes
0answers
19 views

requestCode Alarm Implementation Issue - “id cannot be resolved to a variable”

I'm attempting to build an alarm which reoccurs monthly (using the SO example below) however I'm getting an error stating "id cannot be resolved to a variable". I understand this is related to the ...
0
votes
1answer
24 views

Context Cannot be Resolved

I'm attempting to use a method to schedule monthly alarms described here: How to implement yearly and monthly repeating alarms? However I'm getting two errors on the lines: AlarmManager am = ...
1
vote
2answers
34 views

I want the notification to get closed after I opened the app

I get a notification when a task is done on my app.I have a Reminder app. So when I get the notification I click on the notification which is in the notiftication status bar,and it works perfectly,the ...
0
votes
1answer
15 views

Cancel all pending Intents set in alarm manager in android, but not working

I am adding alarm through service and i m also creating a broadcast to cancel all the alarms(Pending Intents) with in the same service when i m pressing signout i want to unregistere all the alarms so ...
0
votes
0answers
19 views

Android - Trying to set an alarm on the first Monday of each month

I am trying to create an alarm on the first Monday of each month. Here is my code: AlarmManager am = (AlarmManager) context.getSystemService(Context.ALARM_SERVICE); Intent intent = new ...
0
votes
1answer
33 views

Android Notification at time

Hello fellow developers I am looking for hours now how to do this exactly: I want that every day (except weekends) a notification is sent at a time (let's say 18:00 (= 6pm)) except for when the app ...
0
votes
1answer
39 views

AlarmManager to fire notification at every 24 hours

I am using AlarmManager() to fire Notification. I am setting it to fire at 10:30 AM of the morning and repeat at every 24 hours. My code is as follow. I have tested yesterday and the problem is that ...
0
votes
1answer
44 views

Android Alarm Clock - Remove alarms programmatically

I am writing an application in which user can configure alerts/alarms. At this point, I have everything working expect the one. I am firing off an alarm using Intent alarmIntent = new ...
0
votes
1answer
34 views

Fire notification with AlarmManager

I am using AlarmManager to fire Notification. I want that notification fires at 10:30 am of the morning and repeat at every 24 hours. I don't want notification when opening application. I am posting ...
1
vote
1answer
42 views

How to create application which is display message in specific time and day in android

I am creating app which contain. -> time like 2:30 AM -> Repeat like sat,sun User is dynamic add time and repeating value.For example we have 10 record with different value. So how i can ...
0
votes
0answers
28 views

My phone doesn't wakeup on alarm

I am working on app, with the concept of to-do task. I've successfully implemented Notifications. The main problem is that, my phone does not wake-up if switched-off, when the time comes. My ...
0
votes
1answer
14 views

Server alarm bell

I would to implement a simple functionality on my server: I would to know when a my process that it is running on the server is active or no. If this process is not running I would to send an e-mail ...
0
votes
0answers
16 views

Android - One-time inexact alarm?

I am working on an app that periodically polls server for new data (I know I should use GCM, but its not an option here). I am using AlarmManager.setInexactRepeating() to atleast allow system to batch ...
0
votes
1answer
30 views

Android - show notification at specific date

I want to show a notification at a specific date and I use Calendar object: Calendar calendar = Calendar.getInstance(); calendar.set(Year, Month, Day, Hours, Minutes, Seconds); long when ...
0
votes
1answer
29 views

Timer issue on Android

I am using a timer in my application for repeated task. By default, the timer should repeat the task with a delay of one second. I am starting the timer when the application Starts. All this is works ...
0
votes
1answer
32 views

AlarmManager Android set doesn't work second time

First sorry for my english. I have a list of alarms and I need to wake up the application with a notification in a specific time. I only put one alarm at a time. I put an alarm with the set function, ...
2
votes
2answers
54 views

How to schedule a task using Alarm Manager

I am new to Android. I am working on an App in which I need to schedule a task that will be performed in future. I have read about AlarmManager and get to know to that we can accomplish this using ...
0
votes
0answers
21 views

Recovering Alarms in Android

first time user here -- I have a noobie question regarding persisting alarms in Android. I have an alarm clock application which uses AlarmManager. Each time an alarm is set I store alarm info in a ...
2
votes
2answers
98 views

Fire notification at every 24 hours and at exact time of 8 AM

I am using AlarmManager() to fire notification and repeat it at every 24 hours. My code is on onCreate() in Splash Activity which fires first when anyone opens App. User can install App at anytime. ...
0
votes
2answers
38 views

Fire Notification at 10 AM of morning and at every 24 hours

I am using AlarmManager() to fire notification. But don't know how to set to fire at 10 AM of and at every 24 hours. Any one please help me. My code is as below: Calendar Calendar_Object = ...
0
votes
0answers
26 views

Android alarmmanager customized behavior

I'm developing an android app in which the user selects a time range to run a service everyday, for example from 8:00 Am to 10:00 Pm, i'm facing a problem that can probably be solved using simple if ...
1
vote
3answers
34 views

How can I update UI of an app that is in the background without bringing it to the foreground?

I have an Android app with an AlarmManager that repeats every 15 minutes. Depending on the results from this I want to update the UI, but I don't want Android to bring the app to the foreground if it ...
0
votes
2answers
36 views

Android: how to intercept when a Service runs for the first time

Hi and thanks for your help. I have the following situation. I have an AlarmManager that fires off a Service every 1 minute. I have to execute a specific method in that Service only when the ...
0
votes
1answer
31 views

Update time for AlarmManager (Android)

I use AlarmManager to display a notification for an event at the event date and time. But how can I update the time the AlarmManager sends the PendingIndent to my app, when an event is updated? When ...
0
votes
1answer
13 views

Android AlarmManager doesn't cancel identical Intents

For the last two days, I have been trying to get AlarmManager to cancel my previously set Alarms, for some reason I can't get it to work. I have googled the problem, and the most common solution was ...
0
votes
0answers
25 views

Why is AlarmManager.RTC waking my device?

I have a very simple alarm manager to do things while the device is awake. So I figured AlarmManager.RTC was my best approach. As according to AlarmManager API the device is supposed to ignore the ...
0
votes
0answers
14 views

What to do with scheduled internet use when device is offline?

Let´s say I want to update data in my application from the internet once a week, let´s say every seven days exactly. But what if the device is offline at that scheduled time? I actually thought of a ...
0
votes
1answer
42 views

AlarmManager not waking phone up in Air Mode (onReceive delayed)

Problem is that onReceive method of BroadcastReceiver usually "called" by AlarmManager is delayed until device is awoken by the user. This has never happened to me, only information I have was is ...
0
votes
2answers
27 views

AlarmManager firing Alarm Instantly

Intent myIntent = new Intent(Alarm.this, Automaton.class); myIntent.putExtra("methodName", "myMethod"); myIntent.putExtra("hour", tp.getCurrentHour().toString()); ...
1
vote
2answers
50 views

Using AlarmManager to perform a specific task in future

I am new to Android and I would appreciate any help on this. I am trying to use Alarm Manager so that it would call my BroadcastReceiver class at a specific time in future set by DatePicker and ...
0
votes
0answers
13 views

Trigger notifications from alarm manager

I'm trying to set notifictions to trigger from AlarmManager. I've looked at heaps of examples and written the code below but it doesn't work and I can't see whats wrong with it. Can anyone else see ...
-1
votes
1answer
19 views

What is the best approach for access the webservice in the schedule period? [closed]

Access webservice in every 1 minutes I am a newbie for the android programming. I want to access webservice in every 1 minutes. I am using wakelock for enabling the device can be wake up every 1 ...
0
votes
1answer
15 views

Default value when getting extra from an AlarmManger started service

I am scheduling an alarm manager like this: Intent myIntent = new Intent(context, Locale.class); intent.putExtra("end",AlarmEnd.getTimeInMillis()); PendingIntent ...
0
votes
1answer
33 views

Multiple alarms with AlarmManager in Android

All the posts that are there on SO are using PendingIntent.getBroadcast(). Can we set multiple alarms with PendingIntent.getService()? I tried a code with PendingIntent.getService() for single alarm. ...
0
votes
1answer
29 views

AlarmManager onReceive constantly goes off

I've created a BroadcastReceiver with the following method : public void SetAlarm(Context context, int repeatingHours) { int repeatingTimeInMillis = 1000 * 60 * 60 * repeatingHours; // Millisec * ...

1 2 3 4 5 21