Уведомление FCM click_action следует перенаправить в открытый браузер - PullRequest
0 голосов
/ 08 февраля 2019

У меня проблема с операцией нажатия fcm, после получения уведомления, когда я нажимаю на него, он должен открыть браузер, который переходит на «www.google.co.in», но когда я нажимаю на уведомление, он открывает окно по умолчанию.MainActivity.

Вот мой onMessageReceived ():

@Override
public void onMessageReceived(RemoteMessage remoteMessage) {
  Log.d(TAG, "Message Data Payload:" + remoteMessage.getData());       
  Log.d(TAG, "Message notification body: " + remoteMessage.getNotification().getBody());
  Intent intent = new Intent(Intent.ACTION_VIEW);
  intent.setData(Uri.parse("www.google.co.in"));
  PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, intent, PendingIntent.FLAG_ONE_SHOT);

    String channelId = getString(R.string.default_notification_channel_id);
    Uri defaultSoundUri= RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
    NotificationCompat.Builder notificationBuilder =
            new NotificationCompat.Builder(this, channelId)
                    .setSmallIcon(R.drawable.ic_stat_ic_notification)
                    .setContentTitle("FCM Message")
                    .setContentText("FCM MessageBody")
                    .setAutoCancel(true)
                    .setSound(defaultSoundUri)
                    .setContentIntent(pendingIntent);

    NotificationManager notificationManager =
            (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);

    // Since android Oreo notification channel is needed.
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
        NotificationChannel channel = new NotificationChannel(channelId,
                "Channel human readable title",
                NotificationManager.IMPORTANCE_DEFAULT);
        notificationManager.createNotificationChannel(channel);
    }

    notificationManager.notify(0, notificationBuilder.build());
}

Кто-нибудь знает, какова точная реализация или что-то не так в этом коде?

Заранее спасибо.

1 Ответ

0 голосов
/ 08 февраля 2019

Чтобы лучше понять эту тему, я предлагаю вам прочитать эту статью обмен сообщениями в облаке Firebase

@Override
public void onMessageReceived(RemoteMessage remoteMessage) {
  Log.i(TAG, "Message Data Payload:" + remoteMessage.getData());       
  Log.i(TAG, "Message notification body: " + remoteMessage.getNotification().getBody());

        // Check if message contains a notification payload.
        if (remoteMessage.getNotification() != null) {
            Log.d(TAG, "Message Notification Body: " + remoteMessage.getNotification().getBody());

            switch (remoteMessage.getNotification().getBody()) {

                case "openUrlGoogle":
                    Intent intent = new Intent(Intent.ACTION_VIEW);
                    intent.setData(Uri.parse("www.google.co.in"));
                    PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, intent, PendingIntent.FLAG_ONE_SHOT);
                    break;

                case "openUrlOtherSite":
                    break;

                default:
                    Log.v("TAG", "error");
                    break;
            }

        }

    String channelId = getString(R.string.default_notification_channel_id);
    Uri defaultSoundUri= RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
    NotificationCompat.Builder notificationBuilder =
            new NotificationCompat.Builder(this, channelId)
                    .setSmallIcon(R.drawable.ic_stat_ic_notification)
                    .setContentTitle("FCM Message")
                    .setContentText("FCM MessageBody")
                    .setAutoCancel(true)
                    .setSound(defaultSoundUri)
                    .setContentIntent(pendingIntent);

    NotificationManager notificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);

    // Since android Oreo notification channel is needed.
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
        NotificationChannel channel = new NotificationChannel(channelId,
                "Channel human readable title",
                NotificationManager.IMPORTANCE_DEFAULT);
        notificationManager.createNotificationChannel(channel);
    }

    notificationManager.notify(0, notificationBuilder.build());
}
...