2013-06-28 83 views
0

Eclipse是給我這個錯誤在我activity_main.xml文件,但我不知道爲什麼...「錯誤:錯誤解析XML:文檔元素後的垃圾」

<LinearLayout 
xmlns:android="http://schemas.android.com/apk/res/android" 
android:layout_width="fill_parent" 
android:layout_height="wrap_content" 
android:layout_alignParentTop="true" 
android:background="@drawable/titlebar" 
android:orientation="horizontal" 
android:padding="8dip" > 

<TextView 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:gravity="center" 
    android:padding="0dp" 
    android:text="create account" 
    android:textColor="#FFFFFF" 
    android:textSize="32sp" 
    android:textStyle="bold" 
    android:typeface="sans" /> 

<com.viewpagerindicator.TabPageIndicator 
    android:id="@+id/indicator" 
    android:layout_height="wrap_content" 
    android:layout_width="fill_parent" /> 

<android.support.v4.view.ViewPager 
    android:id="@+id/pager" 
    android:layout_width="fill_parent" 
    android:layout_height="0dp" 
    android:layout_weight="1" 
    /> 

</LinearLayout> 

(錯誤註釋出現在行com.viewpagerindicator...標籤開始) 任何幫助或想法,將不勝感激。 謝謝。

+0

你可以請發佈完整的錯誤日誌? –

+0

如何獲取錯誤日誌?對不起,我是Eclipse新手 –

+0

從窗口>顯示視圖> Logcat –

回答

0

嘗試把

<?xml version="1.0" encoding="utf-8"?> 

在XML文件的最頂端。 所以生成的XML應該是這樣的:

<?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="wrap_content" 
    android:layout_alignParentTop="true" 
    android:background="@drawable/titlebar" 
    android:orientation="horizontal" 
    android:padding="8dip" > 

    <TextView 
     android:layout_width="fill_parent" 
     android:layout_height="wrap_content" 
     android:gravity="center" 
     android:padding="0dp" 
     android:text="create account" 
     android:textColor="#FFFFFF" 
     android:textSize="32sp" 
     android:textStyle="bold" 
     android:typeface="sans" /> 

    <com.viewpagerindicator.TabPageIndicator 
     android:id="@+id/indicator" 
     android:layout_width="fill_parent" 
     android:layout_height="wrap_content" /> 

    <android.support.v4.view.ViewPager 
     android:id="@+id/pager" 
     android:layout_width="fill_parent" 
     android:layout_height="0dp" 
     android:layout_weight="1" /> 

</LinearLayout> 
2

您需要添加:

xmlns:app="http://schemas.android.com/apk/res-auto" 

Android的命名空間之下。

+0

這是最完美的答案。爲什麼沒有標記? –

相關問題