安卓通知声音关闭

编程入门 行业动态 更新时间:2024-10-20 00:32:04
本文介绍了安卓通知声音关闭的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我有这个code的通知:

I have a notification with this code :

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

是 notifica.defaults = notifica.defaults | Notification.DEFAULT_SOUND; 我启用默认的声音,但如果我想关闭声音我该怎么办?

with notifica.defaults = notifica.defaults|Notification.DEFAULT_SOUND; I enable the default sound but if I want to disable the sound how can I do ??

推荐答案

那么,它的工作对我来说做这个:

Well, it worked for me by doing this:

myNotification.defaults = 0;

试试吧=)

更多推荐

安卓通知声音关闭

本文发布于:2023-11-27 08:05:09,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1637205.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:声音   通知

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!