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 android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to