I am trying open twitter link : http://mobile.twitter.com/pawan_rathore88 in my activity. If I set WebViewClient to webview I am getting blank page. But when I load url without setting any webviewclient, it loads page properly. Does anyone have idea what can be a problem. Following is my code snippet.

webview = (WebView) findViewById(R.id.webview);
webview.getSettings().setJavaScriptEnabled(true);
//if I comment the following line then webpage loads properly in default Android browser.
webview.setWebViewClient(new WebViewClient() {
   public void onReceivedError(WebView view, int errorCode, String description, String failingUrl) {
                 Toast.makeText(activity, "Oh no! " + description, Toast.LENGTH_SHORT).show();
               }
@Override
public boolean shouldOverrideUrlLoading(WebView view, String url) {

    Log.v(tag, "url :" + url);
    view.loadUrl(url);
    return true;
        }
 });
    webview.loadUrl("http://mobile.twitter.com/pawan_rathore88");

Thanks, Pawan

link|improve this question

40% accept rate
What do you mean a "blank" page. Do you mean an error saying it can't load the page? – JoxTraex Jan 21 at 7:53
Nope, just showing white page and nothing on it. – Pawan Jan 21 at 8:34
well the link works, interesting... Try just writing an application to just load the webpage and see if it works. something may be conflicting with it. – JoxTraex Jan 21 at 8:38
That I have already written, if I don't set WebViewClient, And simply loads url then it works like charm. – Pawan Jan 21 at 9:03
interesting is that your solution then? – JoxTraex Jan 21 at 9:10
show 2 more comments
feedback

2 Answers

After tweaking the code around, it seems to be a user agent problem, seems that changing it to a desktop useragent fixes this problem :

  WebView web = (WebView)findViewById(R.id.webView1);
        web.getSettings().setUserAgentString("Mozilla/5.0 (Macintosh; " +
            "U; Intel Mac OS X 10_6_3; en-us) AppleWebKit/533.16 (KHTML, " +
            "like Gecko) Version/5.0 Safari/533.16");

        String url = "http://mobile.twitter.com/pawan_rathore88";
        web.loadUrl(url);
link|improve this answer
Sorry, but its loading desktop webpages. Not that are for Mobile Devices. – Pawan Jan 21 at 11:19
feedback

This is a problem with twitter at the moment and fails in all web kit mobile browsers.

link|improve this answer
how can you say that, if it's working in default browser. – Pawan Jan 21 at 11:16
the android browser extends the base functionality that is WebKit. Stop assuming so much Pawan, do some research. – JoxTraex Jan 21 at 14:13
The link will now work as twitter has fixed their site. – kkk Jan 25 at 0:44
feedback

Your Answer

 
or
required, but never shown

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