1

我在这里有一个 WebView,以便我的应用程序的用户可以看到我的网站,并且我希望应用程序版本出现在 Webview 上方,因此我将 WebView 标签嵌入到 LinearLayout 中,但是当我在设备上运行项目时,它只会横向滚动, (甚至不完全存在),并且没有上下。我该如何解决?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>
4

1 回答 1

1

你的 XML 甚至没有编译,使用这个:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="@string/ver_num" />

    <WebView
        android:id="@+id/webview"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

</LinearLayout>
于 2013-01-27T14:55:19.427 回答