Skip to content

Instantly share code, notes, and snippets.

@rajubd49
Created April 16, 2015 11:07
Show Gist options
  • Save rajubd49/70137ea89029b6cd22b6 to your computer and use it in GitHub Desktop.
Save rajubd49/70137ea89029b6cd22b6 to your computer and use it in GitHub Desktop.
Full Screen Video playback in iOS - Appcelerator Titanium
var vidWin = Titanium.UI.createWindow({
title : 'Video',
backgroundColor : '#fff'
});
var videoPlayer = Titanium.Media.createVideoPlayer({
top : 2,
autoplay : true,
backgroundColor : 'blue',
height : 300,
width : 300,
mediaControlStyle : Titanium.Media.VIDEO_CONTROL_DEFAULT,
scalingMode : Titanium.Media.VIDEO_SCALING_ASPECT_FIT
});
videoPlayer.url = 'movie.mp4';
vidWin.add(videoPlayer);
vidWin.open();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment