Your question is not very clear but if I'm guessing you mean the webview
is not expanding to fit the whole screen? Please post your code to support your question.
To make the webview
expand to the whole screen, add the webview
in your activity layout xml and make sure you set the layout_width
and layout_height
to fill_parent. Here's a simple example:
<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/webview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"/>
</LinearLayout>
Ryan