在关闭的应用程序中收到通知时转到特定的活动?

时间:2018-12-18 12:58:13

标签: android push-notification android-notifications

下面是我的代码,当应用程序在后台运行时效果很好,但是当应用程序不在后台时会弹出屏幕;

 Intent resultIntent = null;
    if (flag.equalsIgnoreCase("refer_friend")) {
        resultIntent = new Intent(getApplicationContext(), MyLoyaltyHistoryActivity.class);
        resultIntent.putExtra("key", "2");
        resultIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
    }

    TaskStackBuilder taskStackBuilder = TaskStackBuilder.create(getApplicationContext());
    taskStackBuilder.addNextIntentWithParentStack(resultIntent);

    PendingIntent resultPendingIntent = PendingIntent.getActivity(getApplicationContext(),
            0 /* Request code */, resultIntent,
            PendingIntent.FLAG_UPDATE_CURRENT);

    mBuilder = new NotificationCompat.Builder(getApplicationContext());
    mBuilder.setSmallIcon(R.drawable.yu_android);
    mBuilder.setContentTitle(title)
            .setContentText(message)
            .setAutoCancel(false)
            .setSound(Settings.System.DEFAULT_NOTIFICATION_URI)
            .setContentIntent(resultPendingIntent);

    mNotificationManager = (NotificationManager) getApplicationContext().getSystemService(Context.NOTIFICATION_SERVICE);

    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
        mBuilder.setSmallIcon(R.drawable.yu_android);
    } else {
        mBuilder.setSmallIcon(R.drawable.yu_android);
    }


    if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.O) {
        int importance = NotificationManager.IMPORTANCE_MAX;
        NotificationChannel notificationChannel = new NotificationChannel(NOTIFICATION_CHANNEL_ID, "NOTIFICATION_CHANNEL_NAME", importance);
        notificationChannel.enableLights(true);
        notificationChannel.setLightColor(Color.RED);
        notificationChannel.enableVibration(true);
        notificationChannel.setVibrationPattern(new long[]{100, 200, 300, 400, 500, 400, 300, 200, 400});
        assert mNotificationManager != null;
        mBuilder.setChannelId(NOTIFICATION_CHANNEL_ID);
        mNotificationManager.createNotificationChannel(notificationChannel);
    }
    assert mNotificationManager != null;
    mNotificationManager.notify(0 /* Request Code */, mBuilder.build());

2 个答案:

答案 0 :(得分:1)

最后,我使用TaskStackBuilder

得到了答案

使用以下代码;

  Intent resultIntent = null;

    if (flag.equalsIgnoreCase("refer_friend")) {
        resultIntent = new Intent(getApplicationContext(), ReferFreindLoyaltyActivity.class);
        resultIntent.putExtra("back_flag", "1");
        resultIntent.putExtra("refer_a_freind", "1");
    }

    TaskStackBuilder taskStackBuilder = TaskStackBuilder.create(getApplicationContext());
    taskStackBuilder.addNextIntentWithParentStack(resultIntent);
    PendingIntent resultPendingIntent = taskStackBuilder.getPendingIntent(0, PendingIntent.FLAG_UPDATE_CURRENT);

    mBuilder = new NotificationCompat.Builder(getApplicationContext());
    mBuilder.setSmallIcon(R.drawable.yu_android);
    mBuilder.setContentTitle(title)
            .setContentText(message)
            .setSound(Settings.System.DEFAULT_NOTIFICATION_URI)
            .setContentIntent(resultPendingIntent)
            .setAutoCancel(true);

    mNotificationManager = (NotificationManager) getApplicationContext().getSystemService(Context.NOTIFICATION_SERVICE);

    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
        mBuilder.setSmallIcon(R.drawable.yu_android);
    } else {
        mBuilder.setSmallIcon(R.drawable.yu_android);
    }


    if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.O) {
        int importance = NotificationManager.IMPORTANCE_MAX;
        NotificationChannel notificationChannel = new NotificationChannel(NOTIFICATION_CHANNEL_ID, "NOTIFICATION_CHANNEL_NAME", importance);
        notificationChannel.enableLights(true);
        notificationChannel.setLightColor(Color.RED);
        notificationChannel.enableVibration(true);
        notificationChannel.setVibrationPattern(new long[]{100, 200, 300, 400, 500, 400, 300, 200, 400});
        assert mNotificationManager != null;
        mBuilder.setChannelId(NOTIFICATION_CHANNEL_ID);
        mNotificationManager.createNotificationChannel(notificationChannel);
    }
    assert mNotificationManager != null;
    mNotificationManager.notify(0 /* Request Code */, mBuilder.build());

答案 1 :(得分:0)

如果您的应用程序不在后台,则可以获取在数据有效负载中发送的JSON数据,并发出如下通知:

只需将这行代码添加到您的 SplashActivity.java 中:

    Intent intent = getIntent();
    Bundle bundle = intent.getExtras();
    String pushType = bundle.getString("push_type");

在包中,您将获取从后端发送的所有键值数据。在本例中,我是在数据有效载荷中发送 push_type 密钥,在本例中,您也可以在 SplashActivity.java 中获得密钥。