gpt4 book ai didi

android - 奥利奥通知图标不显示

转载 作者:行者123 更新时间:2023-11-29 18:52:38 25 4
gpt4 key购买 nike

我已经使用了 targetSdkVersion 26 并且通知图标没有显示。当我更改为 targetSdkVersion 20 时,它工作正常。但是,当我将应用程序上传到 Play 商店时,它并没有降级。如何在 targetSdkVersion 26 中显示图标。 Notification small icon 72X72 , Notification home screen icon

最佳答案

这里我使用图标的大小

mipmap-mdpi : 24*24
mipmap-hdpi : 36*36
mipmap-xhdpi : 48*48
mipmap-xxhdpi : 72*72

我已经将它存储到名为 logo_white.png 的 mipmap 中,因此在构建通知时您可以像这样使用它

 notificationBuilder.setSmallIcon(getNotificationIcon())...


notificationBuilder = new NotificationCompat.Builder(this, "default")
.setSmallIcon(icon)
.setContentTitle(getResources().getString(R.string.app_name))
.setStyle(new NotificationCompat.BigTextStyle().bigText(data.get("message")))
.setContentText(data.get("message"))
.setAutoCancel(true)
.setSound(defaultSoundUri)
.setColor(ContextCompat.getColor(getApplicationContext(), R.color.colorPrimary))
.setContentIntent(pendingIntent)
.setPriority(Notification.PRIORITY_MAX);

这是方法

private int getNotificationIcon() {
boolean useWhiteIcon = (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.LOLLIPOP);
return useWhiteIcon ? R.mipmap.logo_white : R.mipmap.app_icon;
}

这里的app_icon是普通的应用图标,logo_white是白色透明的应用图标

关于android - 奥利奥通知图标不显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50619113/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com