单击通知时通知Android服务

时间:2015-11-02 03:54:38

标签: android service notifications android-notifications

我在后台播放音乐服务。每当通知发生某些动作时,我想要监听(待定事件)那些在服务中进行进一步处理的动作。如果可能,请提供代码示例。

1 个答案:

答案 0 :(得分:2)

您可以通过以下两种方式开始点击通知服务:

1)第一种方式:当用户点击通知时,您可以呼叫广播接收器。

  

为此你需要使用PendingIntent.getBroadcast而不是   getActivity()。

参考:How to Start one Activity and two service on notification click

2)第二种方式:您可以在用户点击通知时直接开始投放。

  

为此,您需要使用PendingIntent.getService而不是   getActivity()。

参考:Start Service from Notification