Skip to content Skip to sidebar Skip to footer

Webview Not Responding To Touch Events

Im using an embedded webview to display a webpage which is made up of image thumbnails. These thumbnails are links to further webpages. Now my application randomly stops responding

Solution 1:

Apparently Android Webview component has a bug due to which it randomly stops responding to touch events. For more details http://code.google.com/p/android/issues/detail?id=929

Bug is due to the attribute android:layout_height="wrap_content" in the web view component. Workaround can be any other value for this attribute instead of wrap_content

Post a Comment for "Webview Not Responding To Touch Events"