gpt4 book ai didi

android - 如果使用 Parse Push,是否可以为 Android 上通知抽屉中的图标设置背景颜色?

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

如果使用 Parse Push,是否可以更改 Android 上通知抽屉中通知中图标的背景颜色?

我说的是你可以从下图中看到的圆圈的背景颜色

提前致谢

阿德里亚诺

Notifications in the notification drawer

最佳答案

我觉得你可以用下面的方法:

  1. 实现自定义 ParsePushBroadcastReceiver
  2. 覆盖 getNotification(Context context, Intent Intent )
  3. 设置通知颜色

这是我如何做的一个例子:

public class PushBroadcastReceiver extends ParsePushBroadcastReceiver {

@Override
protected Notification getNotification(Context context, Intent intent) {
Notification notification = super.getNotification(context, intent);
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
notification.color = context.getResources().getColor(R.color.your_background_color);
}
return notification;
}
}

关于android - 如果使用 Parse Push,是否可以为 Android 上通知抽屉中的图标设置背景颜色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28984780/

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