0

我有一个错误:“根元素之后的文档中的标记必须格式正确。” 我尝试了很多东西,但没有任何效果。

<?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"/>
4

1 回答 1

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>

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

于 2013-07-18T04:53:49.423 回答