1

我正在从自定义推送广播接收器发送一个包到给定的活动 [这里][1]

这就是我修改代码以触发带有附加功能的意图的方式:

    Intent launchIntent  = new Intent(context, Home2Activity.class);
    launchIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
    //Put push notifications payload in Intent
    launchIntent.putExtras(pushBundle);
    launchIntent.putExtra(PushManager.PUSH_RECEIVE_EVENT, dataObject.toString());
    context.startActivity(launchIntent);

普通接收器工作正常并正确触发 onNewIntent,但自定义接收器显示空附加值。

4

1 回答 1

1

问题出在旗帜上。我自己想通了。修改 pushwoosh 文档的自定义推送广播接收器以检索额外内容,如下所示:

    public class NotificationReceiver extends BroadcastReceiver

{
    public void onReceive(Context context, Intent intent)
    {
        if (intent == null)
            return;

        //Let Pushwoosh SDK to pre-handling push (Pushwoosh track stats, opens rich pages, etc.).
        //It will return Bundle with a push notification data
        Bundle pushBundle = PushManagerImpl.preHandlePush(context, intent);
        if(pushBundle == null)
            return;

        //get push bundle as JSON object
        JSONObject dataObject = PushManagerImpl.bundleToJSON(pushBundle);
        Log.d("APIPushwoosh", dataObject.toString());
        //Get default launcher intent for clarity
        //Intent launchIntent  = new Intent(context, Home2Activity.class);


        Intent launchIntent= new Intent();
        launchIntent.setClass(context, Home2Activity.class);
        launchIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED| Intent.FLAG_ACTIVITY_CLEAR_TOP|Intent.FLAG_ACTIVITY_SINGLE_TOP);
        //Put push notifications payload in Intent
        //launchIntent.putExtras(pushBundle);
        launchIntent.putExtra(PushManager.PUSH_RECEIVE_EVENT, dataObject.toString());
        //GlobalConst.setPush(dataObject.toString());
        PendingIntent contentIntent = PendingIntent.getActivity(context, 0, launchIntent, PendingIntent.FLAG_UPDATE_CURRENT);

        try {
            contentIntent.send();
        } catch (PendingIntent.CanceledException e) {
            e.printStackTrace();
        }

        //Start activity!
        //context.startActivity(launchIntent);

        //Let Pushwoosh SDK post-handle push (track stats, etc.)
        PushManagerImpl.postHandlePush(context, intent);
    }

感谢这个链接

于 2016-02-05T07:51:58.143 回答