-1

I am currently working on a program. The program should ask the use when he wants to be reminded of something during a specific day of the week (example, during Thursdays). Is this possible? Is it even possible to send notifications at a certain time of the day? Of course, the program may be closed by the user, but will notifications still appear even after the user closes the app?

How can I do these? Please, I really do need help on this one.

Christopher Treanor
  • 505
  • 2
  • 8
  • 13
  • Take a look at this: http://stackoverflow.com/questions/16548999/android-scheduled-notifications [possible duplicate] – Kuba Spatny Sep 20 '13 at 15:12

1 Answers1

1

For this purpose you can use AlarmManager. Simple case - schedule starting of android service which will notificate user.

x90
  • 2,140
  • 15
  • 25