通常來說,當自定義一個控件Panel而且此控件有自定義屬性時(例如:panel:closedHandle="@drawable/foot_bar_right"),xml中須要定義此控件的引用地址,(例如:xmlns:panel="http://schemas.android.com/apk/com.example.view")java
這樣就能夠在xml中引用自定義控件了。android
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" //Panel所在的包名 xmlns:panel="http://schemas.android.com/apk/com.example.view" android:layout_width="match_parent" android:layout_height="match_parent" > //自定義控件Panel <com.example.view.Panel android:id="@+id/panel" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_alignParentBottom="true" android:layout_gravity="left" panel:closedHandle="@drawable/foot_bar_right" panel:content="@+id/panelContent" panel:handle="@+id/panelHandle" panel:openedHandle="@drawable/foot_bar_left" panel:position="left" > </com.example.view.Panel>
可是spa
當想要引用的自定義控件爲library時,而且此控件也具備自定義的屬性,如上(它在attrs.xml中有自定義屬性),此時在新項目中引用時,就不能在xml中引用包名。code
而是引用:xmlns:panel="http://schemas.android.com/apk/res-auto"xml
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" //Panel所在的包名 xmlns:panel="http://schemas.android.com/apk/res-auto" android:layout_width="match_parent" android:layout_height="match_parent" > //自定義控件Panel <com.example.view.Panel android:id="@+id/panel" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_alignParentBottom="true" android:layout_gravity="left" panel:closedHandle="@drawable/foot_bar_right" panel:content="@+id/panelContent" panel:handle="@+id/panelHandle" panel:openedHandle="@drawable/foot_bar_left" panel:position="left" > </com.example.view.Panel>