I am having a webview
showing an epub. I need to block scrolling.
I used below code but text selection not working.
@Override
public boolean onTouchEvent(MotionEvent event) {
return true;
}
Actually i need text selection and disable scrolling. How can i do that?