2011-07-31 66 views
0

這裏是我的代碼...一切都應該是正確的,但???錯誤:錯誤解析XML:第2行中的未綁定前綴

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
+0

這是不是你的整個XML文件的權利。當然還有更多?發佈整個事情,因爲到目前爲止看起來是正確的。 –

+0

我想出來了......結果我的一個android前綴被拼寫成這樣:andriod和eclipse中,它由於某種原因將它稱爲第2行 – javis

回答

1

在這段代碼中沒有錯誤

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout 
    xmlns:android="http://schemas.android.com/apk/res/android" 
    /> 

但你必須設置寬度和高度的任何容器的看法。 所以這可能是這樣的

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout 
    xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent"> 
</LinearLayout> 
相關問題