gpt4 book ai didi

android Lollipop 通知白色空圆圈

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

这是我做的

              Notification.Builder notificationBuilder = new Notification.Builder(
getApplicationContext());
RemoteViews mContentView = new RemoteViews(
getApplicationContext().getPackageName(),
R.layout.custom_notification);
Uri alertSound = RingtoneManager
.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
notificationBuilder.setSound(alertSound);
mContentView.setTextViewText(R.id.text, getResources()
.getString(R.string.activation_code)
+ ": "
+ mUUID);
notificationBuilder.setContent(mContentView);
notificationBuilder.setContentTitle(getResources()
.getString(R.string.activation_code));
notificationBuilder
.setSmallIcon(R.drawable.ic_launcher);
notificationBuilder.setAutoCancel(true);
NotificationManager manager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
manager.notify(11151990,
notificationBuilder.getNotification());

非常简单,直到今天我得到我的 nexus 7 Lollipop 操作系统之前,它一直运行良好。顶部的通知图标显示白色圆圈。我该如何解决这个问题?当我从顶部拖动时,通知在其中看起来很正常。

最佳答案

http://developer.android.com/design/patterns/notifications.html

在该页面上,您可以在“不要”下看到,您的通知图标应该只有两种颜色:透明背景上的白色。下拉通知中的图标是不同的,限制较少。

关于android Lollipop 通知白色空圆圈,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26987598/

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