使用 PendingIntent 停止服务

Stop service with PendingIntent

我的广播应用程序上有一个正在进行的通知,我已经设法从该通知启动我的主要 activity,但现在我正在尝试向通知添加一个按钮以停止流媒体服务。

这是我在服务中的通知方法:

@SuppressWarnings("deprecation")
private void createNotification() {
    int myIconId = R.drawable.ic_pause;
    Intent mIntent = new Intent(context, StreamingService.class);
    Notification notification;
    Bundle bundle = new Bundle();
    bundle.putInt("list", list);
    PendingIntent stopIntent = PendingIntent.getService(context, 0, mIntent, 0) ;
    PendingIntent pi = PendingIntent.getActivity(getApplicationContext(),
            0, new Intent(getApplicationContext(), MainActivity.class)
                    .putExtras(bundle), PendingIntent.FLAG_UPDATE_CURRENT);

    if (Build.VERSION.SDK_INT < Build.VERSION_CODES.HONEYCOMB) {
        notification = new Notification();
        notification.tickerText = station.getRadioName();
        notification.icon = R.mipmap.ic_launcher;
        notification.flags |= Notification.FLAG_ONGOING_EVENT;
        notification.setLatestEventInfo(getApplicationContext(),
                station.getRadioName(), null, pi);
    } else {
        notification = new NotificationCompat.Builder(context)
                .setContentTitle(getResources().getString(R.string.app_name))
                .setContentText(station.getRadioName())
                .setSmallIcon(R.mipmap.ic_launcher)
                .setLargeIcon(
                        BitmapFactory.decodeResource(
                                context.getResources(),
                                R.mipmap.ic_launcher))
                .addAction(myIconId,"STOP", stopIntent)
                .setOngoing(true).setContentIntent(pi).build();
    }

    startForeground(NOTIFICATION_ID, notification);
}

这是我的 OnStartCommand:

public int onStartCommand(Intent intent, int flags, int startId) {
    task = new ProgressTask();
    task.execute();
    return START_NOT_STICKY;
}

我做了 Intent 和 PendingIntent 来启动服务,但是如何使用 PendingIntent 将服务设置为 stopSelf()? 我被困在这个问题上好几天了,在此先感谢您的帮助。

在您的 OnStartCommand 中使用这个

if(intent.getAction().equals("STOP"))
stopSelf();

JRowan 指引了我正确的方向,谢谢大佬。

我将这一行添加到我的通知方法中:

mIntent.setAction("STOPME");

现在这是我的 onStartCommand:

 public int onStartCommand(Intent intent, int flags, int startId) {
    if(intent.getAction()!=null && intent.getAction().equals("STOPME")){
        stopSelf();
        return START_NOT_STICKY;
    }
    else {
        task = new ProgressTask();
        task.execute();
        return START_NOT_STICKY;
    }
}