android-alarms Questions

1

Solved

I create an alaram in my app which is calling a BroadcastReceiver to setup notifications ever day with this code: Intent intent = new Intent(Benachrichtigung.CUSTOM_INTENT); PendingIntent pendingI...
Huckster asked 19/6, 2013 at 19:49

3

Solved

Status:--- I equally accept Karakuri's and Sharad Mhaske's answer, but since Sharad Mhaske answer after the start of bounty, the bounty should go to him. Part-2 made: part-2 persistent foreGround ...

1

Solved

Presently, I am working on app that works like "To Do Task List". I have successfully implemented the NotificationService and SchedularService in my application. Also I am getting the alerts(Notifi...
Staceestacey asked 14/5, 2013 at 2:18

1

It seems that the only way to time actions based on the actual elapsed time (as opposed to uptime, which stops when the device sleeps) is the AlarmManager. Is there an an easy way to do "wallclock...
Essequibo asked 25/4, 2013 at 8:56

1

Solved

I want to set up a timer in an Android application that will call a function after every 15/30/45 and n minutes when user login. But also it will stop timer when user log off. and timer begin from ...
Zn asked 17/4, 2013 at 12:16

1

Solved

I have the following code, I expect that this alarm invokes my Service regardless of the state of the phone. Even if its in sleep mode, I need it to access the internet and make some network calls....
Prototype asked 9/4, 2013 at 14:46

1

Solved

I am working on Calender Events reminder . There is no native Calender events reminder in Android so user install different calender apps. Now these apps can be different on reminding events like ...

1

Solved

I am trying to set a repeating alarm in android that eventually will go up at a user specified time. However the alarm goes off right away when once it is set, even when I make sure the alarm isn't...
Mishamishaan asked 18/10, 2012 at 14:57

3

Solved

I want to get alarm on monday to friday only. my code is here if (chk_weekday.isChecked()) { int day = calNow.get(Calendar.DAY_OF_WEEK); if (day == 2 || day == 3 || day == 4 || day == 5 || day...
Fete asked 20/9, 2012 at 7:29

1

Solved

I have set an AlarmManagr with a repeat time. Here is my method by which I am setting it: public void setAlarmManager(Context context, Intent intent) { PendingIntent pendingIntent; pendingInten...
Grout asked 18/4, 2012 at 8:54

2

Solved

i am new to android i have to perform some operation after every 30 min whether my application is running or not so i want to how to perform these operation using service and alarm manager any exam...
Curtiscurtiss asked 10/5, 2012 at 10:4

4

Solved

i am developing an android app to show notifications.How can i poll a webservice at finite interval (say 10 min interval) to check for any update and show as notification in android notification pa...

2

Solved

I have used the same pendingIntent to set multiple alarms using different intentId for each. the alarm is working. Now i want to cancel a particular alarm. If i use the cancel() method i would end ...
Epicotyl asked 16/1, 2012 at 8:33

2

Solved

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 ...
Cosmism asked 14/5, 2011 at 10:33

1

I am developing an android application that should fire an alarm five times a day: - the times in each day is not constant - after the alarm is fired I will schedule the next alarm. My problem is...

2

I am able to create and cancel an alarm with the code below. I want to create more than one alarm. Alarm times comes from an arraylist. In this arraylist I would like to create an alarm for each da...
Dissonancy asked 8/7, 2011 at 7:2

1

As far as I understood the official documentation about Widgets I am a little bit confused. The "standard" way would be to define a BroadcastReceiver and define the update frequency in millisecond...
Marilynnmarimba asked 22/2, 2011 at 10:11

1

Solved

When starting my app, several POI coordinates shall be added to the Android System. Some hours later, my app is closed and the user walks close to one of the POI he shall get notified e.g. through ...

1

Solved

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?
Hindmost asked 18/11, 2010 at 8:18

© 2022 - 2024 — McMap. All rights reserved.