Android Notification Action not calling pending intent to se



我想让我的通知有一个按钮,当点击它应该调用我的服务,这是控制音频播放。

这是我的通知的意图

        Intent intent = new Intent(context, AudioStreamService.class);

    Random generator = new Random();

    PendingIntent i = PendingIntent.getActivity(context, 579, intent,PendingIntent.FLAG_UPDATE_CURRENT);

    final NotificationCompat.Builder builder = new NotificationCompat.Builder(context)
            .setSmallIcon(R.drawable.ic_launcher)
            .setContentTitle(title)
            .setContentText(text)
            .setPriority(NotificationCompat.PRIORITY_DEFAULT)
            .setLargeIcon(picture)
            .setTicker(ticker)
            .setNumber(number)
            .setOngoing(true)
            .addAction(
               R.drawable.ic_action_stat_reply,
               res.getString(R.string.action_reply),
               i);
    notify(context, builder.build());

这是我的服务的开始

    public int onStartCommand(Intent intent, int flags, int startId) {
    Log.e("APP ID", "APP ID - service called ");
    if(isPlaying){
        stop();
    }
    else {
        play();
    }
    return Service.START_STICKY;
}

当从通知中的操作调用时,不会触发日志。但这项服务是通过应用程序中的一个按钮来使用的,效果很好。

使用说明:

PendingIntent pendingIntent = PendingIntent.getService(context, 579, intent,PendingIntent.FLAG_UPDATE_CURRENT);

代替:

PendingIntent pendingIntent = PendingIntent.getActivity(context, 579, intent,PendingIntent.FLAG_UPDATE_CURRENT);

^^用于从通知开始一个活动。

最新更新