Skip to content Skip to sidebar Skip to footer

Android WebView Html5 Video Tag With Https Source

I have a WebView based application where I want to display a video which is inside a video tag like this:

Solution 1:

Have you tried setting a WebViewClient

myWebView.setWebViewClient(new WebViewClient() {
@Override
public void onReceivedSslError(WebView view, SslErrorHandler handler,
        SslError error) {
      handler.proceed();
    super.onReceivedSslError(view, handler, error);
}

Post a Comment for "Android WebView Html5 Video Tag With Https Source"