动态更新通知的动作图标 [英] Update Notification's action Icon dynamically

查看:67
本文介绍了动态更新通知的动作图标的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我为播放器设置了通知,我想在播放后更新图标或暂停通知中的操作.这是我的通知代码.

I set a notification for a player, I want to update icon after play or pause action from notification. This is my code for Notification.

    private void showNotification(String title, Bitmap bitmap) {

    //region Create Notification
    MediaSessionCompat mediaSession = new MediaSessionCompat(getApplicationContext(), "session tag");
    MediaSessionCompat.Token token = mediaSession.getSessionToken();
    NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(this,"PRIMARY_CHANNEL")
             .setSmallIcon(R.mipmap.ic_launcher_1)
             .setLargeIcon(bitmap)
             .setContentTitle("Simplay")
             .setContentText(title)
             .setOngoing(true)
             .setVisibility(NotificationCompat.VISIBILITY_PUBLIC)
            .setContentIntent(notifyPendingIntent)
             .addAction(R.drawable.exo_controls_rewind,"",rewindPendingIntent)
             **.addAction( R.drawable.exo_controls_pause,"",playPendingIntent)**
             .addAction(R.drawable.exo_controls_fastforward,"",forwardPendingIntent)
             .setStyle(new android.support.v4.media.app.NotificationCompat.MediaStyle()
             .setMediaSession(token))
             .setPriority(NotificationCompat.PRIORITY_HIGH);

    notificationManager = NotificationManagerCompat.from(this);
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
        CharSequence name = "Notification";
        String description = "";
        int importance = NotificationManager.IMPORTANCE_HIGH;
        NotificationChannel channel = new NotificationChannel("PRIMARY_CHANNEL", name, importance);
        channel.setDescription(description);
        channel.enableLights(true);
        channel.setShowBadge(false);
        channel.setLockscreenVisibility(123);
        NotificationManager notificationManager1 = getSystemService(NotificationManager.class);
        notificationManager1.createNotificationChannel(channel);
    }
    notificationManager.notify(123, mBuilder.build());
    //endregion
}

推荐答案

解决方案要实时更改操作图标,您需要:

Solution To change the icon of action at realtime, you need:

  1. 获取和替换操作.
  2. 推送新通知.

例如:

notificationBuilder.actions[1] = new Notification.Action(R.drawable.pause, "play", pendingIntent);

NotificationManager service = ((NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE));
service.notify(101, notificationBuilder);

notificationBuilder.actions[1] = new Notification.Action(R.drawable.pause, "play", pendingIntent);
startForeground(101, notificationBuilder);

这篇关于动态更新通知的动作图标的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆