Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am having hard time with one WebView which should show our blog. When initilized, it works just fine. The user can navigate to different links within the WebView. To get back to the blog, there is a button outside the WebView which should load the main blog site again.

The problem is, that nothing is loaded after the second call to loadUrl. Here is my code:

private WebView wv;

        @Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

            this.setContentView(R.layout.blog);

    wv = (WebView) findViewById(R.id.blog_webview);
    wv.getSettings().setJavaScriptEnabled(true);
    wv.setWebViewClient(new WebViewClient() {

        @Override
        public void onPageStarted(WebView view, String url, Bitmap favicon {
            MyLog.logDump("onPageStarted: " + url);
        }

        @Override
        public void onPageFinished(WebView view, String url) {
                            MyLog.logDump("onPageFinished: " + url);
        }
    });

    wv.loadUrl(Constants.BLOG_URL);
}

The function called by my OnClickListener is the following:

    public void reLoadUrl() {
        wv.loadUrl(Constants.BLOG_URL);

}

But despite that the logs in onPageFinished and onPageStarted show that my wv.loadUrl is being invoked and that it's loading the correct url, the content in the webview itself doesn't change. I've tried clearing the cache, the history, the view, tried different WebSettings, tried to use webView.goBack() - not result. Also those ideas don't work: Strange webview goBack issue in android

Sometimes, the reLoadUrl shows the desired result - but once it fails it no longer can be made to work again. Any ideas what could be happening? I did try to read the WebView code but I couldn't find anything that could help me.

The only thing that I can add, is that we are using some ad networks which are heavily dependent on webViews - I tried to turn those down, but I didn't remove the libraries so I am not sure that they are not the culprit.

Any ideas??

share|improve this question
Are you getting any warnings at all in your logcat? Maybe some SSL stuff – Stefan de Bruijn Jan 11 at 13:42
1  
While this sounds odd you could try adding wv.reload() after wv.loadUrl(..). – harism Jan 11 at 13:43
No errors or warnings in the log so far. onReceivedError is not triggered either. Calling reload after loadUrl did not help either. – Elena Jan 11 at 13:53
@Elena hi..Did you solve this? Im having the exact same issue.. – bala Apr 17 at 12:13
I have also lost my 2 days for this issue. And still no success. Can you please post the answer if you got it – Shirish Herwade Apr 28 at 14:16
show 3 more comments

7 Answers

I have spent the last day or so working on an application that utilised a WebView. I did have a few issues with loading data into the WebView.

I am not entirely sure this would work but perhaps replace this code:

public void reLoadUrl() {
    wv.loadUrl(Constants.BLOG_URL);

}

with this code:

public void reLoadUrl() {

    wv.clearView();
    wv.loadUrl(Constants.BLOG_URL);

}

maybe when you clear the WebView it will solve the issue

share|improve this answer
I did try this without success. The webview is cleared but the blog url is not loaded - it just shows a blank page. – Elena Jan 11 at 13:48
@Elena did you try what harism said above in comments calling wv.reload()? The strange thing is that it works sometimes you say? – Javacadabra Jan 11 at 13:49
I did and it didn't help. And yes, sometimes (rarely), the first time when I try to load it again, it works. But almost never the second time and once it fails - it never works again. – Elena Jan 11 at 13:56
Hmmm, Sorry I couldn't be of more help. If I can think of anything else in the meantime I will post it otherwise I hope you get it solved! – Javacadabra Jan 11 at 13:57

Try to load a blank page before:

wv.loadUrl("about:blank");
wv.clearHistory();
wv.clearView();
wv.loadUrl(Constants.BLOG_URL);

Edit: This is a code I used before because I had problems with this too, please try it.

share|improve this answer
tried, sorry, it don't work – Shirish Herwade Apr 28 at 14:27
@ShirishHerwade, I've edited my answer, try the code I've added. – Elad92 Apr 28 at 14:34
1  
tried this also, doesn't work – Shirish Herwade Apr 28 at 16:27

Use exact in below sequence.

   wv.clearCache(true);
   wv.clearView();
   wv.reload();
   wv.loadUrl("about:blank");
   wv.loadData(Constants.BLOG_URL);
share|improve this answer
It didn't work. It just displays a blank page now. – Elena May 7 at 14:28
Could you please check your blog url is not null before reload URL. – user1621629 May 14 at 5:42
I am certain, it's a static constant. – Elena May 15 at 13:20
try custom webview client as per this link and let me know: stackoverflow.com/questions/16408984/… – user1621629 May 15 at 13:27

Try setting a WebChrome client. The webview needs support of WebChrome Clint to work properly in some cases.

wv.setWebChromeClient(new WebChromeClient());
share|improve this answer
Thank you, but it didn't work for me. – Elena May 7 at 14:20

@override public void onFormResubmission(WebView view, Message dontResend, Message resend) { resend.sendToTarget();

}
share|improve this answer
I have tried it but it didn't work. – Elena May 7 at 14:29

Just make a method in which you'll flush an reinitialize whole WebView and call it from reLoadUrl().

void loadWebView() {
    wv = (WebView) findViewById(R.id.blog_webview);
    wv.getSettings().setJavaScriptEnabled(true);
    wv.setWebViewClient(new WebViewClient() {

    @Override
    public void onPageStarted(WebView view, String url, Bitmap favicon {
        MyLog.logDump("onPageStarted: " + url);
    }

    @Override
    public void onPageFinished(WebView view, String url) {
                        MyLog.logDump("onPageFinished: " + url);
    }
});

wv.loadUrl(Constants.BLOG_URL);
}

public void reLoadUrl() {
   loadWebView();
}
share|improve this answer
Thank you for your suggestion. Unfortunately it didn't work for me :( – Elena May 7 at 14:35
can u post your whole code, so that i can get more clarity of whts the problem.. – bakriOnFire May 7 at 16:09

I'd suggest you try recreating the WebView every time you use it and see if that makes any difference.

First save context, layout parms and parent.

Context context = wb.getContext();
ViewGroup.LayoutParams lp = wv.getLayoutParams();
ViewGroup parent = (ViewGroup)wv.getParent();

Then stop it loading and remove the view from its parent.

wv.stopLoading();
parent.removeView(wv);

Then recreate and add it back.

wv = new WebView(context);
parent.addView(wv, lp);

That may be other properties that you'll need to restore, but that's the general idea.

share|improve this answer
Thank you for the suggestion. Although this solution will probably work, recreating the whole WebView is exactly what I am trying to avoid. – Elena May 7 at 14:37
You may be out of luck then. In my experience WebViews in Android are somewhat unreliable. Unless there's a massive performance hit in recreating the WebView every time, if it works, it's better than nothing. At some point you need to just go with whatever lets you move on to your next problem. – James Holderness May 7 at 15:05

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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