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.

Hi I have a WebView defined like the one above:

    <LinearLayout
        android:id="@+id/linearLayout4"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:orientation="vertical"
        android:layout_weight="25" >

        <WebView
            android:id="@+id/home_banner"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center_horizontal"
            android:layout_margin="10dp" />

    </LinearLayout>

When the WebView loads the banner, it lose the gravity attribute, placing it to the left of the LinearLAyout, creating a lot of empty space to the right.

There is any way to fix this issue? Many thanks!

share|improve this question
what exactly do you want? do you want the webview at the center of the layout? – 500865 Nov 11 '11 at 22:29
+Pramod, yes, that's exactly what I want. But when I load the URL, the WebView it's not centered horizontally. – Chronos Nov 14 '11 at 15:14
Is this your complete layout? – 500865 Nov 15 '11 at 4:11
+Pramod, this is a part of the layout. It's not necessary show the entire layout. – Chronos Nov 15 '11 at 16:18

1 Answer

up vote 0 down vote accepted
Try this    

    <WebView
        android:id="@+id/home_banner"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_margin="10dp" />
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.