XML命名空间

一、概念

XML命名空间提供避免元素命名冲突的方法。

二、常见的XML命名空间

常见的XML命名空间有:android、tools、app(自定义命名空间)。

1.android

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

xmlns:xml namespace,声明要开始定义一个命名空间。
android:namespace-prefix,命名空间的名字。
http://schemas.android.com/apk/res/android:看起来是一个URL,但是这个地址是不可访问的,实际上这是一个URI(统一资源标识符)。

使用这行代码,我们就可以引用命名空间中的属性,如:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:text="New Text"
        android:id="@+id/textView" />
</LinearLayout>

在这个布局中,只要以android:开头的属性便是引用了命名空间中的属性,
android是赋予命名空间一个名字,就跟我们平时在定义变量一样,比如我把它取成zwm,那么上面的代码我们也可以写成:

<LinearLayout xmlns:zwm="http://schemas.android.com/apk/res/android"
    zwm:layout_width="match_parent"
    zwm:layout_height="match_parent" >
    <TextView
        zwm:layout_width="wrap_content"
        zwm:layout_height="wrap_content"
        zwm:layout_gravity="center"
        zwm:text="New Text"
        zwm:id="@+id/textView" />
</LinearLayout>

2.tools

xmlns:tools="http://schemas.android.com/tools"

(1)tools只作用于开发阶段
当我们切换到视图窗口(Design)中查看时,可以看到tools:开头的属性效果,但是当app被打包时,所有关于tools属性都会被摒弃掉。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <TextView
        tools:layout_gravity="center"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Hello,World"/>
</LinearLayout>

(2)tools:context开发中查看Activity布局效果
当我们在AndroidManifest.xml中设置一个Activity主题时,主题的效果只能在运行后在Activtiy中显示。如果在布局中使用context属性,就可以在视图窗口(Design)中看到与MainActivity绑定的主题的效果。

tools:context="com.tomorrow.test.MainActivity"

(3)tools:layout开发中查看fragment布局效果
当我们在Activity上加载一个fragment时,需要在运行后才可以看到加载后的效果。如果在布局中使用layout属性,就可以在视图窗口(Design)中看到fragment布局效果。

tools:layout=@layout/yourfragmentlayoutname 

3.app(自定义命名空间)

xmlns:app="http://schemas.android.com/apk/res-auto"(推荐)
或者
xmlns:app="http://schemas.android.com/apk/res/完整的包名"

通常自定义命名空间往往是和自定义View分不开的,当Android自带的控件不能满足需求时,可以自己去绘制一些View,而要为自定义View加上自定义的属性时,就需要创建自定义命名空间。

//attrs.xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
    <declare-styleable name="CustomTextView">
       <attr name="customColor" format="color"/>
       <attr name="customText" format="string"/>
    </declare-styleable>
</resources>

//CustomTextView 
public class CustomTextView extends View {
    private int mColor = Color.RED;//默认为红色
    private String mText="I am a Custom TextView";//默认显示该文本
    private Paint mPaint = new Paint(Paint.ANTI_ALIAS_FLAG);//画笔
    public CustomTextView(Context context) {
        super(context);
//        init();
    }
    public CustomTextView(Context context, AttributeSet attrs){
        this(context, attrs, 0);//注意不是super(context,attrs,0);
        init();
    }
    public CustomTextView(Context context, AttributeSet attrs, int defStyleAttr){//解析自定义属性
        super(context,attrs,defStyleAttr);
        TypedArray typedArray = context.obtainStyledAttributes(attrs,R.styleable.CustomTextView);
        mColor = typedArray.getColor(R.styleable.CustomTextView_customColor, Color.RED);
//        如果没有判断,当没有指定该属性而去加载该属性app便会崩溃掉
        if(typedArray.getText(R.styleable.CustomTextView_customText) != null ){
            mText = typedArray.getText(R.styleable.CustomTextView_customText).toString();
        }
        typedArray.recycle();//释放资源
        init();
    }
    private void init(){
        mPaint.setColor(mColor);// 为画笔添加颜色
    }

    @Override
    protected void onDraw(Canvas canvas) {
        super.onDraw(canvas);
        canvas.drawText(mText, 100, 100, mPaint);
    }
}

//main_layout.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#ffffff">
    <com.tomorrow.test.CustomTextView
        app:customColor="@color/colorAccent"
        app:customText="Test Message"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />
</RelativeLayout>
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,992评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,212评论 3 388
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,535评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,197评论 1 287
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,310评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,383评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,409评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,191评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,621评论 1 306
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,910评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,084评论 1 342
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,763评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,403评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,083评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,318评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,946评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,967评论 2 351

推荐阅读更多精彩内容