Quantcast
Viewing all articles
Browse latest Browse all 4

Answer by Tofeeq Ahmad for Web View Not Loading HTML content

Thank you very much to Nappy and Sandy.

Finally i solved my problem.It was because of secure url https .This will not run in webview directly so we have to avoid the ssl error

webview.setWebViewClient(new WebViewClient(){        @Override        public void onPageFinished(WebView view, String url) {            super.onPageFinished(view, url);            pd.dismiss();        }        @Override        public void onReceivedSSLError(WebView view, int errorCode,                String description, String failingUrl) {            super.onReceivedError(view, errorCode, description, failingUrl);                       view.proceed();        }    });

Viewing all articles
Browse latest Browse all 4

Trending Articles