标签: android service notifications broadcastreceiver alarmmanager
我正在编写一个简单的通知调度程序。一个AlarmManager在发出通知时向服务发送PendingIntents。当服务从AlarmManager接收到Intent时,服务调用的方法是什么?
答案 0 :(得分:0)
你应该使用IntentService,这个方法将在服务上被调用:
IntentService
@Override protected void onHandleIntent(Intent intent)