views:

140

answers:

0

Situation: I have an interactive Java/AJAX Object in my HTML page. It's a simple Application for displaying images with zooming. Recently I can tap / touch the screen and the Application detects that and is zooming in - like that i wanted. But the other features like to move the crop of the image to another area of the image isn't supported because the UIWebView (browser) receives the touch events and not the Application object on my page. So the UIWebView is scrolling out of bounds of the HTML Page and I can see the the grey background for while until I'm stopping with touching.

How to change that the control of touch-events goes to the Java/AJAX Object?

Greets!