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

来源:互联网 发布:java 字符串反转 编辑:程序博客网 时间:2024/04/28 18:11

对这个问题不懂的同学可以看看文章

http://blog.csdn.net/l799069596/article/details/49495583

之前看说是什么命名空间等等专业术语不如看看一篇实例,突然就明白了。



文章出处:http://blog.csdn.net/chuchu521/article/details/8052855

xmlns:android="http://schemas.android.com/apk/res/android的作用是

这<span style="font-size: 13px;">个是xml的命名空间,有了他,你就可以alt+/作为提示,提示你输入什么,不该输入什么,什么是对的,什么是错的,也可以理解为语法文件。或者语法判断器什么的</span>
<span style="font-size: 13px;">这个主要作用是在运行的时候那些控件的属性都是通过它来识别的,如果上面你写错了,不会有任何问题,但是在运行的时候就会有问题,提示你没有指定宽度等什么。这个是不用联网的。</span>


Android 自定义的xmlns其实很简单,语法规则是:

在使用到自定义View的xml布局文件中需要加入xmlns:前缀=http://schemas.android.com/apk/res/你的应用程序包路径.

下面是一个简单的例子:

结构图:

MyView.java

package kexc.myView;

import android.content.Context;
import android.content.res.TypedArray;
import android.util.AttributeSet;
import android.widget.TextView;
public class MyView extends TextView {  
    private String mString = "Welcome to Kesion's blog";
    
    public MyView(Context context, AttributeSet attrs) {
  super(context, attrs);
  TypedArray a = context.obtainStyledAttributes(attrs,  
                R.styleable.MyView);
  int textColor = a.getColor(R.styleable.MyView_textColor,  
                0XFFFFFFFF);  
        float textSize = a.getDimension(R.styleable.MyView_textSize, 36);  
        mString = a.getString(R.styleable.MyView_title);
  setText(mString);
  setTextSize(textSize);
  setTextColor(textColor);
 }
}

 

main.xml

<?xml version="1.0" encoding="utf-8"?>  
<LinearLayout   
 xmlns:android="http://schemas.android.com/apk/res/android" 
 xmlns:test="http://schemas.android.com/apk/res/kexc.myView"
    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"  
     />  
 <kexc.myView.MyView 
     android:layout_width="fill_parent"   
     android:layout_height="fill_parent"
     test:title="wo shi text"
     test:textSize="20px"  
     test:textColor="#fff"  
 />
</LinearLayout>

 

属性文件 value/attrs.xml

<?xml version="1.0" encoding="utf-8"?>
<resources>
 <declare-styleable name="MyView">  
        <attr name="textColor" format="color"/>  
  <attr name="textSize" format="dimension" />  
  <attr name="title" format="string"/>
 </declare-styleable>
</resources>

运行结果:


=================================================================================================

文章出处:http://blog.chinaunix.net/uid-26885609-id-3472233.html

使用xml一段时间了,感觉对其应该熟悉了,但是现在在编程中遇到一个问题,查看布局xml的时候,发现其中xmlns还不明白是什么。次奥,我竟然一直对这个问题熟视无睹!网上搜了资料,整理如下:

xmlnsXML Namespaces的缩写,中文名称是XML命名空间。

使用的规则为,首先定义命名空间xmlns:namespace-prefix="namespaceURI"Androidxml中的使用是:xmlns:前缀=http://schemas.android.com/apk/res/应用程序包路径;然后使用的时候按格式:namespace-prefix(前缀):属性

如果使用xmlns,则xmlns的定义必须放在最外层开始的的标记中

当命名空间被定义之后,所有带有相同前缀的子元素都会与同一个命名空间相关联。避免XML解析器对xml解析时的发送名字冲突,这就是使用xmlns的必要性。当自定义的View有自己的属性的时候,就用到xmlns来定义一个命名空间。

一个例子


 

点击(此处)折叠或打开

    <?xml version="1.0" encoding="utf-8"?> 

  1.     <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
  2.      xmlns:my="http://schemas.android.com/apk/res/demo.view.my" 
  3.      android:orientation="vertical" 
  4.      android:layout_width="fill_parent" 
  5.      android:layout_height="fill_parent" 
  6.      > 
  7.      
  8.      <demo.view.my.MyView 
  9.      android:layout_width="fill_parent" 
  10.      android:layout_height="wrap_content" 
  11.      my:textColor="#FFFFFFFF" 
  12.      my:textSize="22dp" 
  13.      /> 
  14.     </LinearLayout>

上面就重新定义了my这个命名空间。


0 0
原创粉丝点击