I have a webview and i wanted it to occupy the whole screen but it seems to have 7-8pix margin on the right side which is being used to display the scroll bar.
Is there anyway I can remove that margin but still display the scroll bars? I want it to do it in the way GMail app layout is done. Here is the layout that I am using <?xml version="1.0" encoding="UTF-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/ android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" > <WebView android:id="@+id/web_view" android:layout_width="fill_parent" android:layout_height="fill_parent" /> </LinearLayout> I have tried setting the layout_marginRight="-8dip" but that is a hackish way and also takes the scrollbars off the screen making them invisible. Thank you -- 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