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

У меня проблемы с номером значка уведомления.

Теперь в моем коде пользователь может открывать уведомление из панели уведомлений или из самого приложения, но значок исчезает после того, как приложение открыт.

Кто-нибудь знает:

  1. Как добавить номер значка уведомления на значок запуска.
  2. Удалите панель уведомлений и оставьте номер значка на значок запуска, когда пользователь открывает приложение.
  3. Удалять номера значков, когда данные из API возвращаются как 0.

Я использовал https://github.com/leolin310148/ShortcutBadger в качестве библиотеки чтобы отобразить значок, но, похоже, он работает неправильно. Значок вообще не отображается.

Это мой код для уведомления FCM

public class FCMService extends FirebaseMessagingService

{@Override publi c void onNewToken (@NonNull String token) {Log.d («ТЕГ», «Токен обновлен» + токен); }

@Override
public void onMessageReceived(RemoteMessage remoteMessage)
{
    if(remoteMessage.getData() != null)
    {
        Map<String, String> data = remoteMessage.getData();

        String title = data.get("title");
        String content = data.get("content");

        if(MyApplication.isActivityVisible())
        {
            showNotification(title, content);
        }
        else
        {
            showNotification(title, content);
        }
    }
}

private RemoteViews getCustomDesign(String title, String message)
{
    RemoteViews remoteViews = new RemoteViews(getApplicationContext().getPackageName(), R.layout.notification);
    remoteViews.setTextViewText(R.id.tvNotificationTitle, title);
    remoteViews.setTextViewText(R.id.tvNotificationMessage, message);
    remoteViews.setImageViewResource(R.id.icon, R.mipmap.cre_logo);

    return remoteViews;
}

public void showNotification(String title, String message)
{
    Intent intent = new Intent(this, LoginActivity.class);
    intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TASK);
    PendingIntent pendingIntent = PendingIntent.getActivity(this,0, intent, PendingIntent.FLAG_UPDATE_CURRENT);

    Uri uri = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);

    NotificationCompat.Builder builder = new NotificationCompat.Builder(getApplicationContext(), NotificationUtil.NOTIFICATION_CHANNEL_ID_LOCATION)
            .setSmallIcon(R.mipmap.cre_logo)
            .setSound(uri)
            .setAutoCancel(true)
            .setNumber(99)
            .setVisibility(NotificationCompat.VISIBILITY_PUBLIC)
            .setPriority(NotificationCompat.PRIORITY_HIGH)
            .setVibrate(new long[]{ 1000,1000,1000,1000,1000 })
            .setOnlyAlertOnce(true)
            .setContentIntent(pendingIntent);

    if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN)
    {
        builder = builder.setContent(getCustomDesign(title, message));
    }
    else
    {
        builder = builder.setContentTitle(title)
                .setContentText(message)
                .setSmallIcon(R.mipmap.cre_logo);
    }

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

    if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.O)
    {
        NotificationChannel notificationChannel =  new NotificationChannel(NotificationUtil.NOTIFICATION_CHANNEL_ID_LOCATION,"MitsubishiApp", NotificationManager.IMPORTANCE_HIGH);
        notificationChannel.setSound(uri,null);
        notificationChannel.enableLights(true);
        notificationChannel.enableVibration(true);
        notificationChannel.setShowBadge(true);
        notificationChannel.setLockscreenVisibility(Notification.VISIBILITY_PUBLIC);
        notificationChannel.setVibrationPattern(new long[]{ 100, 300, 300, 300, 300});

        notificationManager.createNotificationChannel(notificationChannel);
    }

    notificationManager.notify(NotificationChannelID.getID(), builder.build());
}

И я использовал эту строку кода, чтобы удалить панель / значок уведомлений в моем приложении

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

notificationManager.cancelAll ();

...