Android Webview disable all links but enable scroll
If you want to override the clicking of links in the WebView
, you can use the shouldOverrideUrlLoading
method of the WebViewClient
.
webView.setWebViewClient(new WebViewClient(){
public boolean shouldOverrideUrlLoading(WebView view, String url) {
return true;
}
});