I need to implement notifications repeatedly based on android. for eg. daily at 8AM, 8PM. I have gone through the AlarmManager and Notification classes but i’m not sure about how to use/configure setRepeating()/setInexactRepeating() methods for my requirement. Can anybody suggest which is the best method to use and what are the parameter need to send for setXXXRepeating() methods.
I need to implement notifications repeatedly based on android. for eg. daily at 8AM,
Share
Use
setRepeatingwith 12 hours interval and first trigger time at 8PM/AM.Where
absoluteTimepoints eaither to 8am or to 8pm (whichever comes next).