I’m writing an app, that lets users subscribe to notification for TV transmissions. Currently the user can choose email, sms or push, but it all feels a bit overkill for a simple timed notification.
I wonder if I can tell Android to simply “show this Notification at 11:30”?
If by “Notification” you mean
Notification, then you can useAlarmManagerfor that. Set an alarm to go off at 11:30, and have yourBroadcastReceiverthat processes the alarm’sPendingIntentraise theNotification. However,Notificationdoesn’t send emails, SMSes, etc.