我在 android webview 中使用 HTML5 音频播放器。我想静音音频,我正在使用这样的代码
this.mute = function()
{
console.debug("Muted");
if(_audioHtml.muted == undefined) {
alert("Doesn't exist");
}
else {
if(_audioHtml.muted === true) {
alert("Muted");
}
else if (_audioHtml.muted === false) {
alert("Non Muted");
}
else {
alert("None of them");
}
}
_audioHtml.muted = true;
};
每次通话后,我都可以看到 muted 的值发生了变化。但它不会对设备产生任何影响。它总是以设定的音量产生声音。我怎么能在android中做到这一点。我使用的是安卓 4.0.4。
谢谢。