Уведомление получено, но не открывается намерение - PullRequest
0 голосов
/ 24 апреля 2019

Получение уведомления, но намерение не работает при нажатии на уведомление. Я перепробовал все, но не повезло. чего мне не хватает? тот же код работает в другом приложении.

Пожалуйста, помогите:

          Intent intent = new Intent(this, StdAppFeedback.class);
          intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
           PendingIntent pendingIntent = PendingIntent.getActivity(this, 0 /*    
     Request code */, intent,
            PendingIntent.FLAG_ONE_SHOT);
          Uri defaultSoundUri= 
         RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
          NotificationCompat.Builder notificationBuilder =
            new    
          NotificationCompat.Builder(MyFirebaseMessagingService.this)
                    .setSmallIcon(R.mipmap.ic_launcher)
                    .setContentTitle("Bright Admin")
                    .setContentText(messageBody)
                    .setAutoCancel(true)
                    .setSound(defaultSoundUri)
           .setContentIntent(pendingIntent);


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

    notificationManager.notify(new Random().nextInt() /* ID of    
    notification */, notificationBuilder.build());
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...