Большой значок не отображается в уведомлении в Android - PullRequest
0 голосов
/ 14 марта 2020

в Android уведомление Большой значок отображается в эмуляторе, но не на реальном устройстве.

   private void sendNotification(String messageBody) {
    Intent intent = new Intent(this, MainActivity.class);
    intent.putExtra("name","notification");
    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(this)
            .setSmallIcon(R.mipmap.ic_launcher)
            .setLargeIcon(BitmapFactory.decodeResource(getResources(),
                    R.mipmap.ic_launcher))
            .setContentTitle(getResources().getString(R.string.app_name))
            .setContentText(messageBody)
            .setTicker("Test")
            .setSound(defaultSoundUri)
            .setAutoCancel(true)
            .setDefaults(Notification.DEFAULT_SOUND)
            .setContentIntent(pendingIntent);

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

    notificationManager.notify(0 /* ID of notification */, notificationBuilder.build());
}

как мне решить проблему?

снимок экрана эмулятор реальное устройство

...