Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a Webview that is embedded inside a scrollview. The Webview itself has areas that are vertical scrollable.

Now if I try to scroll inside the webview, the scrollview intercepts the touchevent and scrolls the whole webview instead that only the small scrollable div is moved.

How can I make the scrollview work only if the webview does not want to scroll?

share|improve this question
hello @Janusz I m facing same problem. did you find solution for that? if yes please post as your answer – Alice Jun 29 '12 at 9:21

2 Answers

@Janusz, I have had the same problem. My solution is based on the extended scroll view behaviour in couple with the correct layout. I have wrote the answer to the same question here. Let me know in case you have implementation problems or questions and, please inform whether it helps :)

share|improve this answer
up vote 0 down vote accepted

Our solution uses a Javascript callback through the Javascript Interface. Every time a part of the UI that is scrollable inside the WebView is touched a listener is called through java script and this listener calls requestDisallowInterceptTouchEvent on the WebViews parent.

This is not optimal but the nicest solution found at the moment. If the user scrolls very fast the layer in the WebView won't scroll but at a normal scroll rate it works fine.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.