Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在我的应用程序中做提醒。
我必须在本地数据库中搜索当前日期的事件并发出警报。
我该如何做这个提醒功能?
使用AlarmManager在您的应用程序中实现提醒。
第 1 步:创建一个BroadcastReceiver监听广播消息的对象。
BroadcastReceiver
第 2 步:创建一个PendingIntent并将其设置为AlarmManager.
PendingIntent
AlarmManager
BroadcastReceiver第 3 步:在收到广播时显示提醒/通知,即onReceive()
onReceive()
请参阅本教程以获取更多说明。