2013-11-28 83 views
0

屬性中缺少ADT XML編輯器Android的命名空間前綴

<RelativeLayout  
    android:layout_width="fill_parent" android:layout_height="fill_parent" 
    android:gravity="center_horizontal" android:padding="10px" 
    android.setVerticalScrollBarEnabled="true"> 

錯誤「屬性丟失了Android命名空間前綴」報道,在最後一行:android.setVerticalScrollBarEnabled =「真」>

回答

-1

由於缺少xmlns:tools聲明。代碼應如下所示:

<RelativeLayout  
    xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:tools="http://schemas.android.com/tools" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    android:gravity="center_horizontal" 
    android:padding="10px" 
    android:setVerticalScrollBarEnabled="true"> 
+0

謝謝。如果已經在父元素中定義了名稱空間xmlns:android =「http://schemas.android.com/apk/res/android」:ScrollView,如下所示: \t ,然後我得到了一個錯誤:「意外的命名空間前綴的xmlns。 ..「 –

+0

xmlns將定義在xml中使用的名稱空間。在上面的問題中,代碼不使用'工具'命名空間。 –

相關問題