Html video not playing in android webview It is working Well in android chrome

646 Views Asked by At

I want to run live videos on my App using webview Video having html website,Video is working fine in mobile Googlechrome but it is not working in mobile Inbuilt browser. YouTube is working well in webview but Live Video URL is not working.I guess I need flash to run this video.How can I download Flash as I had seen the last flash was 11.1 and now not getting any flash for android.

URL: pattern ("http://example.com/player/player.html");

Here is my Code:

    webView = (VideoEnabledWebView)findViewById(R.id.webView);
    webView.getSettings().setDomStorageEnabled(true);
    webView.getSettings().setAppCacheEnabled(true);
    webView.getSettings().setAppCachePath(getApplicationContext().getFilesDir().getAbsolutePath() + "/cache");
    webView.getSettings().setDatabaseEnabled(true);
    webView.getSettings().setDatabasePath(getApplicationContext().getFilesDir().getAbsolutePath() + "/databases");
    webView.getSettings().setPluginState(WebSettings.PluginState.ON);
    webView.getSettings().setJavaScriptEnabled(true);
    webView.setWebChromeClient(webChromeClient);
    webView.setWebViewClient(new InsideWebViewClient());
    webView.loadUrl("http://example.com/player/player.html");

Appreciate for solution.

0

There are 0 best solutions below