On Wed, Jan 5, 2011 at 2:13 PM, NathanBarger <[email protected]> wrote: > webView.setHorizontalScrollBarEnabled(true); > webView.setVerticalScrollBarEnabled(true);
Those lines are not needed. > webView.getSettings().setSupportZoom(true); I am not aware that WebView supports pinch-to-zoom, if that is what you are expecting here. Try setBuiltInZoomControls(true); > this.addContentView(webView, new LayoutParams(ScreenWidth, > 250)); This line should not even compile, since there is no LayoutParams class in Android. There are several inner classes named LayoutParams, but that would not suffice if this code is from an Activity as you stated. > Does Google have a support line? If you work for a major device manufacturer, probably. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy _The Busy Coder's Guide to *Advanced* Android Development_ Version 1.9 Available! -- 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

