Сохраните родительский макет (скажем, относительный макет) и установите там свой макет, а внутри него установите линейный макет в соответствии с вашими потребностями и добавьте в него веб-просмотр.См. Следующий код
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
android:id="@+id/RelativeLayout01"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android">
<ImageView
android:id="@+id/ImageView01"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@drawable/main_title_bg"
></ImageView>
<TextView
android:id="@+id/TitleText"
android:layout_height="wrap_content"
android:text="About us"
android:layout_width="wrap_content"
android:layout_centerHorizontal="true"
android:layout_marginTop="8dip"
android:textSize="18dip"
android:textColor="#ffffff"
></TextView>
<LinearLayout
android:id="@+id/linearlayout01"
android:layout_below="@id/ImageView01"
android:layout_height="fill_parent"
android:layout_width="fill_parent"
>
<WebView
android:id="@+id/webview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
/>
</LinearLayout>
</RelativeLayout>
Надеюсь, это то, что вы хотите ....