I am using WebView for loading a website. But it is very slow and is leaking when specific websites are loaded. I am loading WebView with the followin
WebView
Try this from where you loads webview
web.setWebViewClient(new WebViewClient() { @Override public boolean shouldOverrideUrlLoading(WebView view, String url) { return super.shouldOverrideUrlLoading(view, url); } });