On Sat, Feb 19, 2011 at 2:14 PM, Heath Borders <[email protected]> wrote: > Here is what occurs: (==>denotes a call I make, --> denotes a callback) > > ==>webView.loadUrl(A); > -->webViewClient.shouldOverrideUrlLoading(B) { > ==> webView.loadUrl(B); > return true; > } > -->webViewClient.onPageFinished(B); > -->webViewClient.onPageFinished(B);
I have no idea what A and B are. > If I don't implement shouldOverrideUrlLoading, I only get one > onPageFinished, and my redirect from A to B works, but other redirects > dont' work (I presume they are returning different status codes or > something). In this case, your redirect is opening up the default browser application. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy Android Training in London: http://bit.ly/smand1 and http://bit.ly/smand2 -- 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

