I am looking for a method to disable touch on a WebView so user\'s are not able to click on html links but keep the zooming and scrolling functions of the WebView.
the code below allow you scroll but when click at the link it won't go to next page.
webView.setLongClickable(false); webView.setOnTouchListener(new View.OnTouchListener() { @Override public boolean onTouch(View arg0, MotionEvent arg1) { return arg1.getAction() == MotionEvent.ACTION_UP; } } );