Android,意外的xmlns错误

时间:2015-03-24 13:40:27

标签: android

在我的第一个调试应用程序中,我在“xmlns'”上有错误,我找不到解决方案。

错误:"Type Unexpected namespace prefix "xmlns" found for tag AutoCompleteTextView"

<?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:gravity="center" 
            android:orientation="horizontal"
            android:background="#FFFFFFFF" 
            android:padding="10dip">

        <!-- World URL-->
        <AutoCompleteTextView android:layout_weight="1"  xmlns:android="http://schemas.android.com/apk/res/android" 
                              android:id="@+id/url" 
                              android:layout_width="fill_parent" 
                              android:text="@string/urllauncher_default_value_textfield" 
                              android:textColor="#000000"   
                              android:layout_height="wrap_content" 
                              android:singleLine="true" 
                              android:hint="@string/urllauncher_hint_textfield" 
                              android:inputType="textUri"/>

        <!-- Launch button -->
        <Button android:layout_weight="0" 
                android:id="@+id/button_visit_url"  
                android:layout_width="wrap_content" 
                android:layout_height="wrap_content" 
                android:text="@string/urllauncher_button_launch">
        </Button>

 </LinearLayout>

1 个答案:

答案 0 :(得分:0)

从以下部分删除xmlns:android="http://schemas.android.com/apk/res/android"

                  <AutoCompleteTextView android:layout_weight="1"  xmlns:android="http://schemas.android.com/apk/res/android" 
                              android:id="@+id/url" 
                              android:layout_width="fill_parent" 
                              android:text="@string/urllauncher_default_value_textfield" 
                              android:textColor="#000000"   
                              android:layout_height="wrap_content" 
                              android:singleLine="true" 
                              android:hint="@string/urllauncher_hint_textfield" 
                              android:inputType="textUri"/>

因为已在 LinearLayout

中定义了命名空间