Works:

mWebView.setWebViewClient(new WebViewClient() {
    @Override
    public boolean shouldOverrideUrlLoading(WebView view, String url) {
        view.loadUrl("file:///android_asset/www/css-js/app.css");
        return true;
    }
});

Doesn't Work:

mWebView.setWebViewClient(new WebViewClient() {
    @Override
    public boolean shouldOverrideUrlLoading(WebView view, String url) {
        view.loadUrl("http://yahoo.com");
        return true;
    }
});
link|improve this question
Try this post. Could be that you need to set a browser intent – Kyle May 24 '11 at 19:05
Did the answer below solve your problem? If not, please give details. – Sven Viking May 28 '11 at 9:09
feedback

1 Answer

The problem is just that an infinite loop is being created. It re-overrides the new loadUrl each time. For example, this works without problems:

public boolean shouldOverrideUrlLoading(WebView view, String url) 
{
    if(!url.toLowerCase().contains("yahoo.com"))
    {
        view.loadUrl("http://yahoo.com");
        return true;
    }
    return false;
}

Note that simply saving the last override URL and comparing with if(!url.equals(lastOverrideUrl)) will not work in this case (and many others), as the URL is automatically changed from "http://yahoo.com" to "http://www.yahoo.com/".

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.