Skip to content

Instantly share code, notes, and snippets.

@bilbo7833
Last active July 22, 2016 10:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bilbo7833/ffc97513b1dc1468593285760ca3d7db to your computer and use it in GitHub Desktop.
Save bilbo7833/ffc97513b1dc1468593285760ca3d7db to your computer and use it in GitHub Desktop.
Android & Video Blog series - VideoView Example
VideoView myVideoView = (VideoView) findViewById(R.id.videoPreview);
myVideoView.setVideoURI(data);
myVideoView.setMediaController(new MediaController(this));
myVideoView.requestFocus();
myVideoView.start();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment