Skip to content

Instantly share code, notes, and snippets.

@SwiftArchitect
Forked from TjWallas/AndroidVimeo.java
Last active October 4, 2018 07:36
Show Gist options
  • Save SwiftArchitect/af2c6505838d2620400639f5fb2bcf8c to your computer and use it in GitHub Desktop.
Save SwiftArchitect/af2c6505838d2620400639f5fb2bcf8c to your computer and use it in GitHub Desktop.
Embedding Vimeo Videos using WebView on Android
//Auto playing vimeo videos in Android webview
mWebView.getSettings().setJavaScriptEnabled(true);
mWebView.getSettings().setAppCacheEnabled(true);
mWebView.getSettings().setDomStorageEnabled(true);
mWebView.loadUrl("http://player.vimeo.com/video/xxxxxxxx");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment