Reputation: 9
Hi I built an application - and I try to add notification that appear in the 1st of each month. How can I do that? Thanks!
Upvotes: 0
Views: 206
Reputation: 3733
Create a service that periodically checks the date and creates the notification on the first of the month.
Information about Services:
http://developer.android.com/guide/components/services.html http://developer.android.com/reference/android/app/Service.html
Information about Notifications:
http://developer.android.com/guide/topics/ui/notifiers/notifications.html http://developer.android.com/reference/android/app/Notification.html
Upvotes: 0