I have a WebView in my app. This WebView displays a form which submits its data via POST. I would like to use something analogous to shouldOverrideUrlLoading() to inspect the POST request, and react to it. I've done this on iOS with UIWebView's shouldStartLoadWithRequest:navigationType, but I can't find anything similar to it on Android (other than shouldOverrideUrlLoading(), which doesn't catch POST requests).
Any suggestions on what I should do instead? I've tried: 1. Overriding postUrl(), but this only affects posts originating from my code; it doesn't handle posts originating from the displayed HTML form. 2. Using shouldOverrideUrlLoading(), but this doesn't catch POST requests. Thanks for any help! Randy -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

