-
-
Save TjWallas/5432924 to your computer and use it in GitHub Desktop.
//Auto playing vimeo videos in Android webview | |
mWebView.getSettings().setJavaScriptEnabled(true); | |
mWebView.getSettings().setAppCacheEnabled(true); | |
mWebView.getSettings().setDomStorageEnabled(true); | |
// how plugin is enabled change in API 8 | |
if (Build.VERSION.SDK_INT < 8) { | |
mWebView.getSettings().setPluginsEnabled(true); | |
} else { | |
mWebView.getSettings().setPluginState(PluginState.ON); | |
} | |
mWebView.loadUrl("http://player.vimeo.com/video/24577973?player_id=player&autoplay=1&title=0&byline=0&portrait=0&api=1&maxheight=480&maxwidth=800"); |
On my device, the default Vimeo seekbar is present
I used the code given by @TjWallas . The app playing only sound without video. It is showing only black screen in the web view. Please help me with this.
This just opens the video in the browser when I tested it. Then again it has been 6 years...
I used the code given by @TjWallas . The app playing only sound without video. It is showing only black screen in the web view. Please help me with this.
^This maybe because you are using an emulator. Try using the latest APK with hardware acceleration turned on and/or a real device.
The code is outdated.
This method was deprecated in API level 18. Plugins are not supported in API level Build.VERSION_CODES.KITKAT or later; enabling plugins is a no-op.
Check link:
public abstract void setPluginState (WebSettings.PluginState state)
Hi, any tips for enabling full screen???
Can somebody answer? I'm facing a similar problem as gquemener above. The pause/play button is there but there is no seek bar and no icon to change the quality of streaming (from 270p to 360p etc), when displaying a vimeo video in a webview.