本文介绍了如何在phonegap中循环音频?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我使用phonegap 2.2.0和我试过一些代码循环音频播放没有中断。但代码,我试图不是在我的Android设备工作。我的应用程序是一个本机应用程序。当我在设备中运行这个应用程序只玩一次循环不工作,这里是我的代码:
Im using phonegap 2.2.0 and i tried some code to loop the audio for playing without interruption. but the code which i tried is not working in my android device. my application is a native app. when i run this app in device it is playing only for one time the loop is not working and here is my code:
function playAudio(url) {
var my_media = new Media(url,
function() {
console.log("playAudio():Audio Success");
},
function(err) {
console.log("playAudio():Audio Error: "+err);
},
function(status) {
alert(status);
// if (my_media.MEDIA_STOPPED === 4) {
// playAudio(host_root+"resources/medias/sardana.mp3");
// my_media.play();
// }
});
// Play audio
my_media.play({numberOfLoops:99});
}
你能告诉我?
推荐答案
在Phonegap中,Android不支持循环。因此,numberOfLoops在iOS设备上没有任何操作。
Looping is not supported for Android yet in Phonegap - so numberOfLoops does nothing except on iOS devices.
这篇关于如何在phonegap中循环音频?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!