Reputation: 42
I want to create an application to play/stream videos, I know how to play/stream videos when I have the link but can somebody tell me how can I play this video e.g http://gorillavid.in/orophd79hi8o using VideoView or other method?? Thanks
Upvotes: 1
Views: 94
Reputation: 5857
Why not use a WebView for the job? They do it just fine.
Just remember to enable plugins:
webView.getSettings().setPluginState(WebSettings.PluginState.ON)
Upvotes: 1