アプリのユーザーが自分の Web サイトを表示できるように、ここに WebView があり、アプリのバージョンを Webview の上に表示したかったので、LinearLayout 内に WebView タグを埋め込みましたが、デバイスでプロジェクトを実行すると、横にしかスクロールしません。 、(完全にはありません)、上下はありません。これを修正するにはどうすればよいですか? TextView には「ver_num」という文字列値があり、アプリでは 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>