I'm currently working on a web portal that needs to be run within an Android Webview as part of a native application. This whole portal is heavily AJAX-based. So whenever a form is submitted, this is done asynchronously. Depending on the response, I need to present a message box saying "Success" or "Error". I'm doing this with jQuery at the moment. The problem is, that the Android Webview won't repaint and thus the message box won't be visible. What helps, is to tap anywhere on the screen. This seems to force the repainting. No what I need to do is:
1) Do the DOM changes in another way so the Android Webview handles it properly.
OR
2) Force a repainting by triggering some (pseudo) events or by using some dirty hack :)
Anyone ever experienced this problem? Any hints are heavily appreciated.