Hi,

Here is a simple test activity that is unable to show www.google.com.  
However, www.yahoo.com shows properly. It is strange that the same  
URL, "http://www.google.com/";  renders just fine in the web browser  
application built into the SDK.

Any ideas?

Thanks,
DS.

----
public class WebViewTestActivity extends Activity {

        /* (non-Javadoc)
         * @see android.app.Activity#onCreate(android.os.Bundle)
         */
        @Override
        protected void onCreate(Bundle savedInstanceState) {
                super.onCreate(savedInstanceState);
                
                WebView wv = new WebView(this);
                wv.loadUrl("http://www.google.com";);
                
                setContentView (wv);
        }

}
-----
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to