Questions tagged [repeatingalarm]

Alarm in Android that will be repeated after a certain pre-defined time interval.

Alarm in Android that will be repeated after a certain pre-defined time interval. Can be set through AlarmManager class.

232 questions
0
votes
1 answer

Using Calendar with Repeating Alarm

I am trying to use a calendar to set an alarm manager to go off every Sunday. When I open the app, the alarm starts immediately and repeats everyday instead of once every Sunday. CODE: Calendar calendar = Calendar.getInstance(); …
Shane
  • 982
  • 2
  • 12
  • 26
0
votes
1 answer

How to prevent AlarmManager from being recreated with Server?

I have this Service that do other stuff in the background and must always be running. On its onCreate i've set an Alarm that sends an email once a day. The server is not running in foreground, so sometimes its get killed by the system, and then…
0
votes
1 answer

android alarm on specific days

I am making app which uses alarm , which is to be triggered on days specified by the user i.e there are check boxes of days(mon, tue, wed, thu, fri, sat, sun) I have searched a lot on this question, the only solution i came to know is to trigger…
Haris
  • 1,862
  • 2
  • 21
  • 40
0
votes
2 answers

Repetitive alarm using alarm manager

I am trying to make an alarm application that takes multiple "n" time inputs from the user and rings at those particular times. For that I have created an array of EditTexts for both the hour and minute entries. In the onclick listener for the…
tanvi
  • 789
  • 4
  • 11
  • 25
0
votes
1 answer

alarm takes n multiple times

I am trying to make an alarm application that will take ‘n’ number of times from the user and buzz at those times and stores the difference in the timing so that the next user accesses the application, the stored difference is default. Here is the…
tanvi
  • 789
  • 4
  • 11
  • 25
0
votes
1 answer

Android service not stopping after cancelling

I have widget that start 2 services using AlaramManager and running them repeatedly: public static final String TAG = "RotterWidgetProvider"; public static ArrayList subjectsList; public static boolean isUpdated=true; public static…
Alex
  • 7,423
  • 3
  • 28
  • 32
-1
votes
1 answer

Schedule a task that run once a day only if internet connection available

I want a task to do which require internet connection and it's must scheduled once in a day. I achieve above task partially using alarm manager like below. Calendar c = Calendar.getInstance(); //gives u calendar with current time …
Zameel NM
  • 33
  • 6
-1
votes
2 answers

What is best to use as SetRepeating() does not work after 19 API

I am doing some support work on an app that a previous placement student developed which is an app that takes in user input say 5. This then means that an alarm will sound every 5 minutes. Her app has came back to me as the alarm has a mind of its…
TheAlmac2
  • 173
  • 13
-1
votes
2 answers

Alarm Manager - Set alarm to run from a start date to a finish date

I am currently working on an android app with a reminder service. I am using AlarmManager. I have successfully been able to set the alarm to run when the user clicks a button. But I want it to run from a start day to a finish day. But right now, it…
Adora
  • 9
  • 4
-1
votes
1 answer

Alarm with toggle buttons as days to set alarm

I have a button, textview and 7 toggle buttons. Every toggle button is a day of the week. I got the alarm working when you tap the button, timePickerDialog opens and after choosing time, it shows the time in the textview and sets the alarm at that…
-1
votes
2 answers

Swift 4 continous background task not working

I have tried using NSTimer for scheduling a timely background task. However, it stopped working at some point ( Don't know what the issue was) and also it stops when user tries to intentionally kill the application. I am required to call an API…
Iram Bukhari
  • 447
  • 1
  • 4
  • 14
-1
votes
2 answers

Why repeating tasks with alarm manager are not accurate on android?

I'm developing an app which you can schedule your time and It reminds you on time just like google calendar. I use AlarmManager class and set a Repeating task to check Database every one minute and see if there is any alarm on that time or…
Mohammad H
  • 725
  • 2
  • 10
  • 24
-1
votes
1 answer

Upcoming alarm triggers immediately

I have used AlarmManager to set the alarm and passed the time from timePicker. I want to set alarm at the given time but if the time(that I am going to set) has been passed then the alarm triggers immediately . Example:- If the current time is 9:00…
Environer Inc
  • 155
  • 2
  • 9
-1
votes
1 answer

AlarmManager with right side icon for repeating alarms

I'm trying to create an alarm clock app. The thing is that I want to display the Alarm icon to the right side of the app when the user enables an alarm. I know that AlarmManager.setAlarmClock() does that, but I want to repeat the alarm, for example…
-1
votes
1 answer

UILocalNotification firing repeatative for particular days

I am developing alarm application, i want to do the repeat alarm functionality same as there in iOS Alarm Clock application, where we can select repeat option as Every Monday, Every Tuesday,... likewise. Example: If i select only Every Monday,…
Suhas Arvind Patil
  • 1,662
  • 1
  • 17
  • 31
1 2 3
15
16