我有以下代码来播放声音。但是,当我按下按钮时什么都没有发生。声音文件位于 Resource 文件夹中。在这方面需要帮助。
var playButton = Ti.UI.createButton({
title:'play',
borderRadius : 'black',
top:40,
right:65,
width:50,
height:50
})
playButton.addEventListener('click',function(e){
var sound = Titanium.Media.createSound({
sound : "1-0.wav"
});
sound.play();
})