gpt4 book ai didi

android - NotificationCompat.Builder 类型未定义方法 setColor(int)

转载 作者:搜寻专家 更新时间:2023-11-01 08:43:11 24 4
gpt4 key购买 nike

我正在开发一个发送推送通知的简单项目。

我想通过设置颜色、图标等来设计我的通知。根据 Android 开发者网站,NotficationCompat.Builder 类有一个名为 setColorsetCategory 的方法,但两者都给我一个编译错误。

我已经将 android.support.v4.... 更新到最新版本,还有什么想法吗?提前致谢

编辑:这是问题的代码 fragment :

NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(context)
.setDefaults(defaults)
.setSmallIcon(R.drawable.icon)
.setLargeIcon(BitmapFactory.decodeResource(context.getResources(), R.drawable.alert))
.setColor(Color.RED) // The error is here!!!
//.setCategory(Notification.CATEGORY_ALARM)
.setWhen(System.currentTimeMillis())
.setSubText("Tap here for more details")
.setContentTitle("Care@Home Alert")
.setTicker("Care@Home Alert")
.setContentIntent(contentIntent)
.setAutoCancel(true);

确切的错误被复制到问题标题中。

最佳答案

更新:问题是支持库没有更新到最新版本。

关于android - NotificationCompat.Builder 类型未定义方法 setColor(int),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30908038/

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