I use Webview in android, where I load a webpage, but I want all links to be disabled and the webview should scroll.
I am using the following code right now:
tnc.setOnTouchListener(new View.OnTouchListener() {
public boolean onTouch(View v, MotionEvent event) {
return true;
}
});
This disables web browsing, but the scroll also disappears.
I also tried:
tnc.setClickable(false);
but it also does not work. Please help me.
source
share