0

我正在尝试在我的 Android 应用程序中使用闪烁的通知。当我使用

    notification.defaults |= Notification.DEFAULT_ALL;

通知正在显示,但没有闪烁的 LED,只有声音和振动。

当我使用

    notification.defaults |= Notification.DEFAULT_VIBRATE;
    notification.defaults |= Notification.DEFAULT_SOUND;
    notification.defaults |= Notification.DEFAULT_LIGHTS;

通知根本没有显示。我做错了什么?

4

1 回答 1

0

尝试这个:

    notification.flags |= Notification.DEFAULT_SOUND | Notification.FLAG_SHOW_LIGHTS
于 2018-01-17T03:24:48.420 回答