I am trying to make an application that plays videos from Vimeo.
I don't know how to play them in VideoView I've tried to play in WebView but I'm encountering some errors.
How can I play Vimeo videos in a VideoView ?
Here is my WebView code in case something is wrong :
boolean flashInstalled = false;
try {
PackageManager pm = getPackageManager();
ApplicationInfo ai = pm.getApplicationInfo("com.adobe.flashplayer", 0);
if (ai != null)
flashInstalled = true;
} catch (NameNotFoundException e) {
flashInstalled = false;
}
WebSettings webViewSettings = myweb.getSettings();
webViewSettings.setJavaScriptEnabled(true);
webViewSettings.setPluginsEnabled(true);
webViewSettings.setBuiltInZoomControls(true);
webViewSettings.setPluginState(PluginState.ON);
myweb.loadUrl("http://player.vimeo.com/video/<50134732>?player_id=player&title=0&byline=0&portrait=0&autoplay=1&api=1");
