次のコードを使用して、フォト ギャラリーを開きました。ただし、次のコードを使用してもビデオは表示されません。ギャラリーにビデオを表示する他のコマンドはありますか?
Titanium.Media.openPhotoGallery({
success : function(event) {
uplaodideo(event.media);
},
cancel : function(e) {
alert(e);
},
error : function(err) {
Ti.API.error(err);
},
mediaTypes : [Titanium.Media.VIDEO_MEDIA_TYPE_VIDEO]
});
});