Touch input issues using WebView

Hi @kdowney ,

Yes, this was working for the sample app. But, did not work for our App.

I found a solution, which completely disables touches for the whole activity. We are still able to programatically pass touches to our WebView.

By adding this to our Activity:

getWindow().setFlags(WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE,
                WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE);

taken from java - Disable Touch for the whole Activity - Stack Overflow

Thanks a lot for your support,
Richard.