I have a WebView here so that users of my app can see my web site and I wanted the app version to appear above the Webview so I embedded the WebView tag inside of the LinearLayout but when I ran the project on my device it only scrolls sideways, (not even completely there), and no up and down. How do I fix this? The TextView has a string value called "ver_num" and in the app it says 1.0
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android:
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/ver_num" />
<WebView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/webview"
android:layout_width="fill_parent"
android:layout_height="fill_parent" />
</LinearLayout>