我正在尝试通过单击按钮来播放.mp4。我用不同的SDK测试了这个,结果是:
1.7.5:按下按钮时出现黑屏 1.8.0.1& 1.8.1:没有任何事情发生
如果取消注释,事件将被注册为警报“测试”正在运行。这是我的代码:
// Create main window
var win = Ti.UI.createWindow({
backgroundColor: '#fff'
});
// Initialize the variable that will hold the playing video
var activeVideo;
// Create a play button
var button = Ti.UI.createButton({
title: 'Play Video',
});
// Add the button to the window
win.add(button);
// Listen for a 'click' on the button
button.addEventListener('click', function () {
// alert('Test');
// Create the media player
activeVideo = Ti.Media.createVideoPlayer({
url: 'video.mp4',
autoplay: true
});
});
// Open the window
win.open();
答案 0 :(得分:1)
视频播放器未添加到窗口中。尝试:win.add(activeVideo);