WebView in Gallery stopping scroll/touch events?

Try this: mWebView. SetOnTouchListener(new OnTouchListener(){ @Override public boolean onTouch(View v, MotionEvent event) { gallery. OnTouchEvent(event); return true; } }).

Implement your gallery, overriding the onInterceptTouchEvent method and returning true from it: public class WebViewImagesGallery extends Gallery { @Override public boolean onInterceptTouchEvent(MotionEvent ev) { return true; } } in your view, reference it as.

Disables all touch events on a WebView because the touch listener is executed before the default touch behavior of the WebView. By returning true the event is consumed and isn't propagated to the WebView. Using android:clickable="false" does not disable touch events.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions