Vibrate,Led,Sound的Android Notification默认值

时间:2012-06-01 11:23:47

标签: android eclipse java-ee

我现在已经构建了一个短信服务应用程序我希望在接收短信时显示通知我希望在设备(移动设备)上使用dafault意味着设置,即如果选择一个振动然后振动或者如果一个选择LED那么{{ 1}}或者如果选择声音或响铃,则Notification.DEFAULT_LIGHTS。 是否有可能先生,请在这方面帮助我,或对不起我的英语不好或不理解。我还在下面标记我的代码

Notification.DEFAULT_SOUND

1 个答案:

答案 0 :(得分:4)

问题出在Notification.DEFAULT_LIGHTS标志设置中。你不应该设置它。 这段代码适合我

    notification.flags |= Notification.FLAG_AUTO_CANCEL;
    notification.defaults = Notification.DEFAULT_SOUND | Notification.DEFAULT_VIBRATE;
    notification.ledARGB = Color.BLUE;
    notification.ledOnMS = 500;
    notification.ledOffMS = 500;
    notification.flags |= Notification.FLAG_SHOW_LIGHTS;