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.

238 questions
-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
  • 193
  • 2
  • 15
-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
  • 487
  • 1
  • 5
  • 15
-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
  • 1
  • 2
  • 9
-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,732
  • 1
  • 19
  • 31
-1
votes
1 answer

Android repeating alarm calls service, sometimes alarm stops repeating

this is how i am starting a repeating service. Intent intent2 = new Intent(Main_page.this, SyncService.class); final AlarmManager alarm2 = (AlarmManager) Main_page.this.getSystemService(Context.ALARM_SERVICE); PendingIntent pintent2 =…
parvez rafi
  • 464
  • 4
  • 20
-1
votes
1 answer

How to programmatically check that alarm has been scheduled already or not?

I have used the below code to set the alarm, mAlarmManager.setRepeating(AlarmManager.RTC_WAKEUP, activeModeTime.getTimeInMillis(), AlarmManager.INTERVAL_DAY, getActiveModeAlarmPendingIntent()); Every time when my app…
-1
votes
1 answer

How to schedule alarm in android......?

I want to schedule an alarm according to the desired days. E.g. sunday,tuesday,thursday. I have scheduled it according to time but not able to do as week days. Below is code: private void StartScheduler(Context context) { Calendar startTimmer =…
-1
votes
1 answer

alarm receiver for multiple alarms

I have a program that allows users to input three times for alarm, then at the appropriate time, display an alert.However, whenever i set the alarms, only the last one is being carried out. So basically, the user inputs 1,2 or 3 then i carry out…
-1
votes
1 answer

Reminding a user by using a particular date and time in any of the screen in my application

In Android 4.0.x we can use CalendarView. Using that functionality, I need to develop a reminder task. By clicking the particular date, I need to pop-up the TimePicker and after selection of the specific time, the date and time needs to be stored…
gowri
  • 681
  • 9
  • 27
-2
votes
1 answer

Need some help to fill in the blanks in code that schedules daily notifications

I've searched through Android studio documentation and found some pieces of code that should schedule daily notifications. Unfortunately, as I'm new to all of this, it has some missing pieces that I can't figure out. private AlarmManager…
-4
votes
1 answer

Notification without a message in iOS, how? Is there a name for that? Alarm, alert, reminder?

I have seen some iphone apps that only play a sound in background without showing any Notification message or body in iOS. How do they that? I've tried searching for Sound notification only but no luck. Is there a name for that and I happen to…
user1949873
  • 460
  • 7
  • 17
1 2 3
15
16