This is really weird !
WebView can load and display any web page but http://google.com !
I've tried this:


public class WebActivity extends Activity {

        private WebView webView;

        @Override
        protected void onCreate(Bundle icicle) {
                super.onCreate(icicle);

                webView = new WebView(this);
                //webView.loadUrl("http://google.com";);
                webView.loadUrl("http://google.com/ig";);

                setContentView(webView);
        }

}

http://google.com/ig or any other web page is displayed but loading
http://google.com I (you?) only get an empty page.
Could this be possible ?

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
Announcing the new M5 SDK!
http://android-developers.blogspot.com/2008/02/android-sdk-m5-rc14-now-available.html
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to