android中的命名空间

android中的xmlns是xml namespace的简称及xml文件命名空间;

以我们经常使用的android:layout_height="warp_content"为例子,android是命名空间,layout_height是属性名称,warp_content是属性值;

使用的规则是,首先定义命名空间xmlns:namespace="namespaceURI"。Android中的xml中的使用时:xmlns:前缀=http://schemas.android.com/apk/res/应用程序包名;

在我们自定义View的时候可能需要自定义一些额外的属性,这里边需要使用到了命名空间的概念。


如下一个小例子:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:myxmlns="http://schemas.android.com/apk/res/com.zbkc.custumview"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<TextView android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello" />
<View myxmlns:text="sss"
myxmlns:textColor="#ffffffff"/>
</LinearLayout>



你可能感兴趣的:(Android开发)