Авто Удалить Firebase Уведомления

У меня есть вопрос, я прочитал и " Сделать уведомление исчезнуть через 5 минут", и " Очистить уведомление" через несколько секунд, но я до сих пор не понимаю, в какой части они вызывают удаление уведомления. На мой телефон поступает уведомление о входящей пожарной базе, и если пользователь не нажимает на него, я хочу, чтобы уведомление автоматически удалялось / исчезало через 20 секунд. Могу ли я узнать, как это реализовать?

PS Я тоже читал об услугах. Я новичок в языке Java и поднимаю его, когда пробую небольшую демонстрацию. https://developer.android.com/guide/components/services.html

Мои коды ниже сбивают мое приложение каждый раз, когда я получаю уведомление. Любая помощь будет оценена.

Отредактировано: это полностью функционально. Для чьей-либо ссылки

        private void removeNotification()
{
    long delayInMilliseconds = 20000; 
    final Timer timer = new Timer();
    timer.schedule(new TimerTask() {
        @Override
        public void run()
        {
            NotificationManager manager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
            manager.cancel(0);
            timer.cancel();
        }
    }, delayInMilliseconds, 1000);
}

3 ответа

Решение

Да, это очень легко. Там, где вы получаете уведомление, добавьте один обработчик, если уведомление не прочитано пользователем, затем удалите уведомление.

@Override
public void onMessageReceived(RemoteMessage message) {
sendNotification(message.getData().toString);
}

добавить код уведомления

private void sendNotification(String messageBody) {
        Intent intent = new Intent(this, MainActivity.class);
        intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
        PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, intent,
                PendingIntent.FLAG_ONE_SHOT);

        Uri defaultSoundUri= RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
        NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this)
                .setSmallIcon(R.mipmap.ic_launcher)
                .setContentTitle("TEST NOTIFICATION")
                .setContentText(messageBody)
                .setAutoCancel(true)
                .setSound(defaultSoundUri)
                .setContentIntent(pendingIntent);

        NotificationManager notificationManager =
                (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
        int id = 0;
        notificationManager.notify(id, notificationBuilder.build());
        removeNotification(id);
    } 

отменить код уведомления.

private void removeNotification(int id) {
Handler handler = new Handler();
    long delayInMilliseconds = 20000;
    handler.postDelayed(new Runnable() {
        public void run() {
            notificationManager.cancel(id);
        }
    }, delayInMilliseconds);
}

Согласно я реализовал создать новый класс и расширяет FirebaseMessagingService

Вы можете написать следующий код для отправки уведомления:

 private void sendNotification(String messageBody) {
        Intent intent = new Intent(this, MainActivity.class);
        intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
        PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, intent,
                PendingIntent.FLAG_ONE_SHOT);

        Uri defaultSoundUri= RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
        NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this)
                .setSmallIcon(R.mipmap.ic_launcher)
                .setContentTitle("TEST NOTIFICATION")
                .setContentText(messageBody)
                .setAutoCancel(true)
                .setSound(defaultSoundUri)
                .setContentIntent(pendingIntent);

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

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

для отмены уведомления создайте новый метод и напишите следующий код:

Handler h = new Handler();
    long delayInMilliseconds = 20000;
    h.postDelayed(new Runnable() {
        public void run() {
            notificationManager.cancel(id);
        }
    }, delayInMilliseconds);

Есть свойство под названиемttlв SDK администратора Firebase-Messaging. См . параметр ttl для конфигурации Android из Firebase.

AndroidConfig.ttl: продолжительность жизни сообщения в миллисекундах.

Другие вопросы по тегам