Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How does Android mute the notification channel?

2025-01-17 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/01 Report--

This article mainly introduces how to mute Android to notify channel, which has a certain reference value, interested friends can refer to, I hope you can learn a lot after reading this article, let the editor take you to understand it.

Preface

At present, all markets require targetsdkversion not less than 26, that is, android 8.0. It correspondingly affects many functions, such as notification.

When targetsdkversion > = 26, you need to add channel for the notification, such as

Manager = (NotificationManager) BaseApp.getAppContext () .getSystemService (Context.NOTIFICATION_SERVICE); if (Build.VERSION.SDK_INT > = Build.VERSION_CODES.O) {NotificationChannel channel = new NotificationChannel ("update", "update", NotificationManager.IMPORTANCE_DEFAULT); manager.createNotificationChannel (channel);} builder = new NotificationCompat.Builder (BaseApp.getAppContext (), "update")

The first step is to create a new NotificationChannel and call NotificationManager's createNotificationChannel to enable the channel.

Then set the same channelid when you create the buidler.

Mute

So what if you want to mute the notification?

You can set setSound (null, null) on channel. Note that if the channel is already installed and the override installation does not work, you need to uninstall and reinstall it.

You can also set builder, setOnlyAlertOnce (true). Note that this is not completely muted, but let the notification ring only once, for example, when it shows the progress of the download, it will not ring all the time.

Manager = (NotificationManager) BaseApp.getAppContext () .getSystemService (Context.NOTIFICATION_SERVICE); if (Build.VERSION.SDK_INT > = Build.VERSION_CODES.O) {NotificationChannel channel = new NotificationChannel ("update", "update", NotificationManager.IMPORTANCE_DEFAULT); channel.setSound (null, null); manager.createNotificationChannel (channel);} builder = new NotificationCompat.Builder (BaseApp.getAppContext (), "update");... builder.setOnlyAlertOnce (true) Thank you for reading this article carefully. I hope the article "how to mute Android to notify channel" shared by the editor will be helpful to everyone. At the same time, I also hope you will support us and pay attention to the industry information channel. More related knowledge is waiting for you to learn!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report