user1826959
user1826959

Reputation: 9

How to add notification in the beginning of each month in android

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

Answers (2)

CatShoes
CatShoes

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

Alexander
Alexander

Reputation: 48272

Perhaps you could use AlarmManager

Upvotes: 1

Related Questions