I have a webView in Android, and I open a html webpage in it. But it\'s full of links and images, and when I click one of them, it loads in my webview. I want to disable thi
Using inject javascript On @Override onPageFinished
view.loadUrl( javascript: (function () { document.addEventListener('click', function (e) { e.stopPropagation(); } , true); })() );