在android中禁用通知声音

时间:2017-02-11 10:39:50

标签: java android android-notifications

我想创建一个没有任何声音的通知。我怎么能这样做?谢谢。

这是我的代码:Link

对不起我的朋友。我不能把我的代码放在这里。

非常感谢你。

1 个答案:

答案 0 :(得分:1)

我真的不明白你的问题,但用更简单的术语来说......这是在android中创建通知的代码:

Notification notifica = new Notification();
notifica.flags |= Notification.FLAG_AUTO_CANCEL;
notifica.icon = R.drawable.serie_notification;
notifica.when = System.currentTimeMillis();

要禁用声音,你必须添加:

notifica.defaults = 0;