I want to play video url inside my application webview but when i am run the application it showing only white screen . i had read some post on this and i have used that cod
Add webview.setWebChromeClient(new WebChromeClient()); and to enable plugins for your video add:
webview.setWebChromeClient(new WebChromeClient());
if (Build.VERSION.SDK_INT < 8) { webview.getSettings().setPluginsEnabled(true); } else { webview.getSettings().setPluginState(PluginState.ON); }
Hope this helps.