gpt4 book ai didi

安卓通知灯不工作

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

现在我正在使用通知让用户知道该服务仍在运行。现在我想用notificationlight来提醒用户。 (因为它很花哨)

通知工作正常,但通知灯什么也没做。其他应用程序与通知灯一起工作正常,(gtalk,facebook)

它或多或少是添加了这些标志的通知示例代码:

notification.ledARGB = 0xff00ff00;
notification.ledOnMS = 100;
notification.ledOffMS = 100;
notification.flags |= Notification.FLAG_SHOW_LIGHTS;

notification.flags |= Notification.FLAG_NO_CLEAR + Notification.FLAG_ONGOING_EVENT;
mNotificationManager.notify(NOTIFICATION_ID, notification);

notification.defaults |= Notification.DEFAULT_LIGHTS;

相反也不起作用。

我正在 Android 4.0 的 Galaxy Nexus 上进行调试,但应用程序的目标是 Android 2.3.3

编辑:这可能是许可问题吗?如果有,是哪一个?我翻遍了所有内容,没有找到与通知灯匹配的权限。

最佳答案

我认为 + 运算符有误,您需要 OR:

notification.flags |= Notification.FLAG_NO_CLEAR | Notification.FLAG_ONGOING_EVENT;

编辑:如果您使用标志,我认为正确的应该是:

notification.flags |= Notification.FLAG_SHOW_LIGHTS

关于安卓通知灯不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10358472/

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