What does unbound prefix mean, when parsing XML?

前端 未结 3 1040
野趣味
野趣味 2021-01-04 06:29

I Have made a xml file in my android app for the Custom Widget and the error is:

Error parsing XML: unbound prefix

Here is my x

相关标签:
3条回答
  • 2021-01-04 06:38

    The second XML namespace is correct however it is the namespace of your custom widget so you need to define the name space appropriately:

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

    becomes:

    xmlns:mynamespace="http://schemas.android.com/apk/res/com.myproject.myprojectname"
    

    Thereafter any custom attribute elements you define for your custom view will be referred to as:

    mynamespace:my_defined_attribute="success"
    

    instead of :

    android:layout_width="fill_parent"
    
    0 讨论(0)
  • 2021-01-04 06:56

    In your XML file, you have to add a line:

    <LinearLayout 
        xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res/com.myproject.winedeals"
     .....
     .....>
    
    0 讨论(0)
  • 2021-01-04 07:03

    Take the second XML Namespace declaration out:

     <?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">
       <com.example.CustomWidget.MyView
         android:id="@+id/surface
         android:layout_width="fill_parent"
         android:layout_height="fill_parent" 
         android:layout_weight="1"
         android:focusable="true"
         android:focusableInTouchMode="true"  />
    </LinearLayout>
    
    0 讨论(0)
提交回复
热议问题