ブラウザで開いているFCMプッシュ通知でリンクを取得しています。私はこの方法でそれをやった:アプリが殺されたときにFCM通知をクリックするとブラウザが開きます
Intent notificationIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.google.com"));
PendingIntent contentIntent = PendingIntent.getActivity(this, 0, notificationIntent, 0);
Uri defaultSoundUri= RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this)
.setSmallIcon(R.mipmap.ic_launcher)
.setContentTitle("Firebase Push Notification")
.setContentText(messageBody)
.setAutoCancel(true)
.setSound(defaultSoundUri)
.setContentIntent(contentIntent);
NotificationManager notificationManager =
(NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
notificationManager.notify(0, notificationBuilder.build());
しかし、問題は、通知のクリックでは、アプリケーションがフォアグラウンドにあるときにのみ開いているブラウザです。しかし、アプリが殺されたり、バックグラウンドでブラウザが開かれたりすると、アプリが開かれます。 PendingIntent.getActivity