簡體   English   中英

在Android中禁用通知聲音

[英]Disable notification sound in android

我想創建一個沒有聲音的通知。 我該怎么辦?謝謝。

這是我的代碼: 鏈接

對不起,我的朋友們。我不能在這里放代碼。

非常感謝。

我真的不明白您的問題,但用簡單的話來說..這是在android中創建通知的代碼:

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

要禁用聲音,您必須添加以下內容:

notifica.defaults = 0;

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM