gpt4 book ai didi

android - 通知栏同时显示大图标和小图标

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:25:24 27 4
gpt4 key购买 nike

我的应用程序中的通知栏只显示滚动条中的小图标(它应该如此)。但是,当“阴影”被拉下时,它既显示了自动收报机中的小图标,也显示了我在 Notification.Builder 中设置的大图标。这是我的代码:

if (Build.VERSION.SDK_INT > 10){
notification = new Notification(R.drawable.ic_stat_mintchip,
"This is a test",
System.currentTimeMillis());
notification.largeIcon = (((BitmapDrawable)c.getResources().getDrawable(R.drawable.ic_launcher)).getBitmap());
notification.defaults |= Notification.DEFAULT_ALL;
notification.number += 1;
notification.flags |= Notification.FLAG_AUTO_CANCEL;

} else {
notification = new Notification(R.drawable.ic_stat_mintchip,
"This is a test",
System.currentTimeMillis());

notification.flags |= Notification.FLAG_AUTO_CANCEL;
notification.defaults |= Notification.DEFAULT_ALL;
notification.number += 1;
}
}

我不太清楚为什么会这样。有什么帮助吗?

最佳答案

我认为这里的问题可能是您没有使用 Notificaiton.Builder 类。这是您可以执行的操作的一个小示例(尽管您必须插入自己的变量,并设置您使用的其他属性,例如振动):

Notification.Builder nb = new Notification.Builder(context)
.setContentTitle("title")
.setContentText("content")
.setAutoCancel(true)
.setLargeIcon(largeIcon)
.setSmallIcon(R.drawable.small_icon)
.setTicker(s.getText());
NotificationManager nm = (NotificationManager)context.getSystemService(Context.NOTIFICATION_SERVICE);
nm.notify(100, nb.build());

关于android - 通知栏同时显示大图标和小图标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11024522/

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