Skip to content

Instantly share code, notes, and snippets.

@dominicthomas
Created October 2, 2015 09:21
Show Gist options
  • Save dominicthomas/092a14cc53ce34a1a3cd to your computer and use it in GitHub Desktop.
Save dominicthomas/092a14cc53ce34a1a3cd to your computer and use it in GitHub Desktop.
Used to play a video file from the file system.
private void playVideo(final File file) {
Uri intentUri = Uri.fromFile(file);
file.setReadable(true, false); // security?
Intent intent = new Intent();
intent.setAction(Intent.ACTION_VIEW);
intent.setDataAndType(intentUri, "video/*");
startActivity(intent);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment