2
我想更新應用程序以在iOS 4上工作,並且我無法讓電影播放器控件顯示在視頻上。Appcelerator Titanium:can not get videoPlayer來顯示視頻播放器控件
下面是我使用的代碼...
var movie = Titanium.Media.createVideoPlayer({
url: vidurl,
backgroundColor: '#000',
movieControlMode: Titanium.Media.VIDEO_CONTROL_DEFAULT
});
videoWindow.add(movie);
movie.addEventListener('complete', function (e) {
alert("movie is finished");
movie.close();
});
movie.fullscreen = true;
movie.play();
我怎樣才能獲得錄像機控制露面,並觸發事件?
編輯:修復了一個問題,現在視頻在完成後關閉。但仍然沒有視頻播放控件。