Last active
July 22, 2016 10:43
-
-
Save bilbo7833/ffc97513b1dc1468593285760ca3d7db to your computer and use it in GitHub Desktop.
Android & Video Blog series - VideoView Example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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