Thanks Bill. Your suggestion worked for me. I had same problem as couple of other posters. WebView example from android's website was not working despite having the right permissions and no firewall issue. In fact, I tried a to do a HTTPGet into a TextView. That worked fine, but WebView example was giving me grief.
Besides, the correction suggested by you I would also like to point out that the client classes mentioned in the example @ http://developer.android.com/guide/tutorials/views/hello-webview.html are inconsistent. Cheers, Dips On May 12, 2:56 am, Bill Zimmerly <[email protected]> wrote: > I was successful in fixing the problem (above) and this details it... > > This line in the Webapp.java file had to be changed from this ... > > > webview= (WebView) findViewById(R.id.webview); > > To this... > > > webview= (WebView) findViewById(R.id.webkit); > > And, in the main.xml file these two lines had to be replaced... > > > android:layout_width="wrap_content" > > android:layout_height="wrap_content" > > By these two... > > > android:layout_width="fill_parent" > > android:layout_height="fill_parent" > > - Bill --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

