0

I need to configure a reminder that will happens multiple times on selected week days.

For example:

Alarm Frequency: 2 hours Week Days: Monday, Thursday

If user select Monday and Thursday, and a frequency of 2 hours; the alarm must repeat each 2 hours only on Monday and Thursday.

How can I do that?

JonasOliveira
  • 694
  • 8
  • 26

1 Answers1

0

What you are trying to do is to create an alarm.

Please take a look at the link below,

http://developer.android.com/training/scheduling/alarms.html

EDIT:

If you want to repeat it Multiple times on a selected weekdays, then please take a look at the following link,

Set Repeat days of week alarm in android

Community
  • 1
  • 1
Ahmed
  • 2,966
  • 7
  • 42
  • 69
  • No man.. Alarm can be set with a trigger time and repeat if you set setRepeat. But I don't know how to do the way I mentioned on question: Multiple times a day and only happens on selected weekdays. – JonasOliveira Jun 06 '14 at 18:18
  • @JonasOliveira: I have added a new link for you. See if it works out for you. Thanks! – Ahmed Jun 07 '14 at 16:17
  • Thank you, but I have not find yet how I will implement my alarms. This logic is kind complicated. Thank you for your help! – JonasOliveira Jun 08 '14 at 03:40