Posts by Rafael Oliveira • 1 point
1 post
-
0
votes1
answer98
viewsA: How to disable click(Touch) in a Webview?
Try to use: webView.setOnTouchListener(new View.OnTouchListener() { @Override public boolean onTouch(View v, MotionEvent event) { return true; }}); This disables the touch. Source: Question Stack…