I'm working on an Android application that uses a WebView and some 302 redirects to track link clicks. On Android 2.3.3, a 302 redirect passes through
public boolean shouldOverrideUrlLoading(WebView view, String url)
correctly, but on Honeycomb 3.2.2 only the initial URL passes through, and the 302 redirect never shows up as being requested. I attempted the solution here, and the answer here, but neither of those fixes the problem.
Thanks for any help!