Android Pending Intent开始服务

时间:2015-04-29 17:53:30

标签: android service android-notifications

所以我有一个服务,在onCreate()我设置了3个待处理的意图来启动相同的服务,每个服务都有不同的额外数据来指定动作。我正在创建一个通知,我想使用一个待处理的意图作为点击操作,一个作为解雇操作,第三个用于警报。

        Intent iCancel = new Intent(this, BootService.class);
        Intent iAlarm = new Intent(this, BootService.class);
        Intent iDismiss = new Intent(this, BootService.class);

        // each will have actions
        iAlarm.putExtra(INTENT_ACTION, INTENT_ALARM_FIRED);
        iCancel.putExtra(INTENT_ACTION, INTENT_CANCEL);
        iDismiss.putExtra(INTENT_ACTION, INTENT_DISMISS);

        PendingIntent piCancel = PendingIntent.getService(
                this,
                0,
                iCancel,
                Intent.FILL_IN_DATA);

        mPiAlarm = PendingIntent.getService(this, 0, iAlarm, Intent.FILL_IN_DATA);

        PendingIntent piDismiss = PendingIntent.getService(this, 0, iDismiss, Intent.FILL_IN_DATA);

        mNotifyBuilder = new NotificationCompat.Builder(this)
                .setSmallIcon(R.drawable.ic_action_about)
                .setContentTitle(getString(R.string.app_name))
                .setContentIntent(piCancel)
                .setDeleteIntent(piDismiss);

问题是所有待处理的意图似乎具有相同意图的额外数据,因此无论通知是否被点击或解除或两者都未启动onStartCommand,都会从{{收到常量INTENT_CANCEL 1}}

我认为它与intent.getIntExtra(INTENT_ACTION)中使用的标志有关,我对使用哪个标志感到困惑。我尝试过使用PendingIntent.getService()PendingIntent.FLAG_CANCEL_CURRENT,似乎都没有解决问题,但结果却不同,我为每个操作都收到常量UPDATE_CURRENT

如何让每个待定意图拥有自己的意图额外数据?

解决方案

我在INTENT_ALARM_FIRED doc中发现了有关此方案的确切警告。 http://developer.android.com/reference/android/app/PendingIntent.html

刚刚更改了我的请求代码并且可以正常工作

1 个答案:

答案 0 :(得分:4)

这与认为相同的意图有关。有关详细信息,请参阅PendingIntent

解决这个问题的一种方法是改变每个Intent的requestCode。 (getService调用中的第二个参数)