Android class, providing access to the system alarm services
0
votes
1answer
12 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
24 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
39 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
8 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 ...
0
votes
1answer
12 views
What is the best approach for access the webservice in the schedule period?
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 ...
-1
votes
0answers
18 views
How can I make an intent when using javascript android
im trying to do a notification manager im working with phonegap and designing with jquerymobile but i have exceptions when i try to run this code.
hope you will help me urgentlly because this is for ...
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
17 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
18 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
vote
1answer
21 views
start repeating alarm from AlarmManager
I want to start a service every day from 8am to 6pm. I am using 3 alarms.
For starting alarm2 everyday at 8am.
For starting service every 1 min.
To stop alarm2.
Is it the proper way? Also I am ...
0
votes
3answers
33 views
How to cancel an AlarmManager
I have setup an alarmManager as follows:
Intent intent = new Intent(TopActivity.this, RecordActivity.class);
intent.setFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP);
...
0
votes
2answers
34 views
start service which repeat at top of every hour and fetch information at fixed time interval
i have setting repeated alarm manager to start service which fetch the location and send SMS but currently i am only writing time duration in file to check the alarm accuracy .
I find that the alarm ...
0
votes
1answer
10 views
setRepeating won't cancel from other activity
I see there is a lot of similar questions but I have my alarm info stored in a database. The reminder is cancelled inside the database by a call to deleteReminder and it looks like this
public ...
1
vote
0answers
30 views
Android AlarmManager waking application with different intent
Our application uses AlarmManager to wake the application with a certain PendingIntent, this intent is always passed correctly to our onReceive-method. In the following code alarmid and alarmuser has ...
-2
votes
1answer
37 views
How to Send sms periodically after a fixed time automatically [closed]
I need to send an SMS to a number periodically in background after a fixed time. How can tat be done. Thanks.
0
votes
1answer
19 views
Android BoardcastReceiver waiti for network connection to execute function
I set a repeated AlarmManager which will send the pendingIntent on certain time to call the BoardcastReceiver for perform update content of my apps. What my problem is how do i wait for the network ...
0
votes
1answer
38 views
Stop a service at specific time
I am starting my service using below code repeatedly. My service starts at 8am everyday. And AlarmManager repeates at every 1 min. I want to stop this sevice at 6pm. how can I do this ?
...
0
votes
2answers
16 views
How to cancel a PendingIntent when is set to repeating?
I have this...
button = (Button) findViewById(R.id.start_repeating);
button.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
Intent intent = new Intent(Test.this, ...
0
votes
1answer
50 views
Schedule several automatic tasks using AlarmManager and Calendar
I have this piece of code...
desc.setOnClickListener(new OnClickListener(){
public void onClick(View arg0){
alert.setTitle("Download");
alert.setIcon(R.drawable.go_down_3_32x32);
...
0
votes
0answers
9 views
How to ignore delayed Android Alarms?
I have multiple repeating alarms.
For example, if they repeat every hour:
I don't want to take action for an alarm that should have been triggered at 08:00 AM but couldn't because the phone was off ...
0
votes
2answers
76 views
set repeated alarm manager for every hour in android
I want to fetch location every hours in android . For that i use alarm manager and set repeated alarm for every hour and just want to write into file after fix time i.e at 8 AM and 12 PM .
I got a ...
0
votes
0answers
11 views
Strategies for scheduling repeating alarms on android?
I want the same action to run on the same time and on different days of the week, like:
Action 1-> run on 15:33 on Every Wednesday, Thursday,Friday and Sunday.
Should i schedule 1 non-repeating alarm ...
0
votes
1answer
25 views
AlarmManager opening (Alert)Dialog
My MainActivity sets an Alarm (or multiple Alarms).
When the alarm goes of I want to show an AlertDialog that plays the alarm sound, shows info about the alarm and something like OK and delete, after ...
0
votes
0answers
18 views
Pass String to AlarmManager in another activity to control setRepeating
I am trying to pass a String to let a spinner choose how often an alarm will repeat with a setRepeating but it doesn't seem to work. Everything is fine if I don't try to pass the spinner value and ...
0
votes
1answer
31 views
Schedule AlarmManager event to happen a few days from now
I have been playing with the AlarmManagerin order to schedule an IntentServiceto do X task after a specific period of time. So far it works great, here' how I do it:
public static void ...
0
votes
1answer
34 views
AlarmManager does not work when app is force closed
Documentation for AlarmManager startes that
Note: The Alarm Manager is intended for cases where you want to have your application code run at a specific time, even if your application is not ...
0
votes
1answer
28 views
Resetting alarms on reboot
User can create different alarms. So it's up to user when to keep alarm and he can keep multiple alarms and I maintain all the scheduled alarms in a database and show to the user for further ...
0
votes
2answers
40 views
broadcastreceiver not working when app is not running
In my manifest file I have declared the receiver. (as follows)
<receiver android:name=".OnAlarmReceive" />
however, once I shut down my application, I am not able to get the alarms and the ...
0
votes
1answer
23 views
set date and time from respective pickers to set alarm
I preparing an app like "To-Do List" in which user sets alarm to its task. Now the problem is that i don't know how to set alarm using date and time pickers.
The working i need is that user first ...
0
votes
1answer
40 views
Android getExtras/Intent different than expected
In my activity I am managing a list of user supplied food, and I am setting alarms based on when they expire. However for some reason the intent passed to onRecieve is not the one that I thought it ...
0
votes
0answers
25 views
How to resolve these multiple issues with DialogBox in alarmmanager event?
I have an alarmmanager onReceive event handler where I acquire wake lock.
Need help to check if Powermanager handling right:
public class PowerMgr {
private static WakeLock wlstatic=null;
...
0
votes
2answers
27 views
how to stop repeating alarm from another activity
I have set repeating alarm on multiple tasks in my app. I am getting all task notification properly. but when I am clicking on dismiss button the alarm is not cancelling.
I have created Alert Dialog ...
0
votes
1answer
32 views
Is alarmmanager ALWAYS cleared after reboot?
Simple question: is the AlarmManager always cleared after reboot? Is it cleared after reboot on all devices and even when the user boots his device up very shortly after he booted it off?
I need to ...
-1
votes
2answers
30 views
How to run an activity once in 3o mins forever android? [duplicate]
hi i want this code to be repeated forever, can any body help me pls i am trying a lot but i could not get an explanantion for this i cant understand how to repeate it once for half an hour using ...
0
votes
2answers
29 views
how to repeat an alarm android?
How to repeat an alarm manager to run my activity once in 30 minutes?
How to simply run this main activity once in 30 minutes can anybody explain me pls
code :
import android.app.Activity;
import ...
1
vote
1answer
42 views
How to repeat my service using alarm manager?
I have done a location based app. Now I need to run my location service once in 30 mins. For that I have tried using alarm manager but it is running my service only once. I need it to run every 30 ...
0
votes
1answer
24 views
AlarmManager going off before Set Time
I'm having an issue with my AlarmManger:
The following correctly adds one day (because the time 9:25 has passed) the output is correct yet the AlarmManager calls the Broadcast within a couple ...
-1
votes
0answers
46 views
Use AlarmManager to set alarms for each day of weak [closed]
I need to find a way to set alarm for a particular time on every day of the week.
For example: Monday - 7 a.m, Tuesday - 8, etc. And use this pattern for every week. Which is the best way to do this?
0
votes
2answers
36 views
Cancel alarm with different context
I've a alarm created in an OnBootReceiver like this:
public class OnBootReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
...
0
votes
2answers
32 views
Schedule a message using alarm manager
I'm working on an Android application which schedules messages to be sent. I'm making use of alarm manager. My main part of the code is as follows:
mConfirm.setOnClickListener(new ...
0
votes
1answer
33 views
AlarmManager setRepeating function not working.
I am trying to use setRepeating alarm, but it is not working for me. When I try to use the one time alarm then it is working for me.
Below is the code, please help me out where I am doing it wrong.
...
-2
votes
0answers
45 views
How to start another service like send sms with alarm manager or notification? [closed]
I have written some code when we set a time for alarm and when alarm trigger, it gives notification to user. But my question is, How to send a sms at the same time when alarm triggers?
Notification ...
0
votes
1answer
52 views
Putting Overlay after getting data from AlarmManager call
I have a main activity which shows google map (v2). Periodically I send data and retrieve data using Alarm manager of Android. Once I receive the data from Alarm manager, I need to pass the retrieved ...
1
vote
2answers
65 views
SharedPreferences - Activity and BroadcastReceiver
I am currently using the SharedPreferences to keep track of a list of items to perform work on in a BroadcastReceiver started through an AlarmManager. Everything works great except a particular ...
0
votes
1answer
85 views
Notifications and AlarmManager - cancelling the alarm I set
I am making a sample app just for educational purposes, where I create a notification every minute. I also have a button to cancel the alarm.
What I do is that when the notification comes, I click it ...
0
votes
3answers
47 views
Android Service won't run from AlarmManager
I have a problem with running a service from Alarm manager.
I am building an app that notifies the owner on the namedays of his facebook friends. It all works nicely, but the notification won't ...
0
votes
1answer
39 views
writing multiple alarms, alarm manager overrides them?
I'm extremely confused as to why when I first set an alarm it goes off, then i try to set it again and it doesn't. BUT the THIRD time it works, and so does the 5th,7th,9th etc... so every 2 times i ...
0
votes
0answers
35 views
Alarm only going off if I set it within 30 seconds of targeted time
As per the title, it seems the only way I can get my alarm to go off is if I set the time for around (don't know the exact time) 30 seconds prior to the specified time. If I set it for anything longer ...
0
votes
0answers
41 views
AlarmManager stops to work
I though, after the last changes on my code, that my "Timer Receiver" works, but it is not...
I can start the manager and having the Receiver be called, then, after some hours, the AlarmManager stops ...
0
votes
1answer
142 views
Scheduled Alarm Local Notification using Android Phonegap plugin
I have created scheduled Alarm Local Notification using Android Phonegap plugin which is available in github repository. I have tested that notifications by scheduling alarms(at the instant, also some ...

