(webview)根元素后面的文档中的标记必须格式正确

时间:2013-07-18 04:46:05

标签: android xml webview

我有一个错误: “根元素后面的文档中的标记必须是格式良好的。” 我尝试了很多东西,但没有任何作用。

<?xml version="1.0" encoding="utf-8"?>    
<WebView xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/webview"
    android:layout_width="fill_parent"
    android:layout_height="match_parent" />    
<ProgressBar 
     android:id="@+id/progressbar"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    style="?android:ottr/progressBarStyleHorizontal"/>

1 个答案:

答案 0 :(得分:0)

错误说将其包装到父版面中。

见下文:

   <?xml version="1.0" encoding="utf-8"?>  
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
                  android:layout_width="fill_parent"
                  android:layout_height="fill_parent"
                  android:weightSum="1"
                  android:orientation="vertical">       
    <WebView 
        android:id="@+id/webview"
        android:layout_width="fill_parent"
        android:layout_height="0dp"
        android:layout_weight="0.9"/>    
    <ProgressBar 
         android:id="@+id/progressbar"
        android:layout_width="wrap_content"
        android:layout_height="0dp"
        android:layout_weight="0.1"         
        style="?android:attr/progressBarStyleHorizontal"/>
    </LinearLayout>

view应该是ViewGroup的子代(即Layout)。在布局上,每个视图都会被渲染