如何在图标启动器 kotlin 中创建徽章编号
Posted
技术标签:
【中文标题】如何在图标启动器 kotlin 中创建徽章编号【英文标题】:How can I create badge number in icon launcher kotlin 【发布时间】:2021-12-21 19:26:11 【问题描述】:我的故事是像这样在图标或徽章编号顶部制作数字 home screen icon 但它不适用于所有设备,为什么? 以及如何解决?
【问题讨论】:
这不是 android 功能。个别启动器应用可以选择支持它。 这能回答你的问题吗? How to show Notification Count on My App Icon on Home Screen in Android 【参考方案1】:如果通知通知android系统为您的应用程序图标添加徽章, 您可以使用以下代码显示通知
val id = "my_channel_01"
val name = getString(R.string.channel_name)
val descriptionText = getString(R.string.channel_description)
val importance = NotificationManager.IMPORTANCE_LOW
val mChannel = NotificationChannel(id, name, importance).apply
description = descriptionText
setShowBadge(true)
val notificationManager = getSystemService(Context.NOTIFICATION_SERVICE) as NotificationManager
notificationManager.createNotificationChannel(mChannel)
【讨论】:
以上是关于如何在图标启动器 kotlin 中创建徽章编号的主要内容,如果未能解决你的问题,请参考以下文章