Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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");
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.