Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

So i've created a few html pages to embed into an application via WebView, the pages themselves work fine in the normal android browser HOWEVER within the WebView module the page's width is only 313, and it allows a bit of a horizontal scroll, this does not occur in a normal browser in Android.

So the desired width is 320px, WebView is outputting 313px but still allows a horizontal scroll (of a few pixels).

Below is my code for the layout, I assume Android is injecting some inline styles into the webview that I am not aware of, was wondering if anyone had the same problem?

 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <WebView
        android:id="@+id/help_webview"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent" />

</RelativeLayout>
share|improve this question
You might want to look here: stackoverflow.com/questions/4970045/… This worked for me. – Steelight Jun 12 '12 at 9:45

1 Answer

up vote 1 down vote accepted

It seems there are some differences between Webview and native browser:

Android WebView VS Phone Browser
http://groups.google.com/group/android-developers/browse_thread/thread/9fb826412233b9b4

Did you try setWebChromeClient()?
What's the difference between setWebViewClient vs. setWebChromeClient?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.