xmlns其实就是xml namespace的缩写,表示使用哪个命名空间。一般布局文件中,都会添加 xmlns:android="http://schemas.android.com/apk/res/android"  ,这就表示告诉开发工具使用android的一些属性。

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

这个是xml的命名空间,有了他,你就可以alt+/作为提示,提示你输入什么,不该输入什么,什么是对的,什么是错的,也可以理解为语法文件。或者语法判断器什么的 

这个主要作用是在运行的时候那些控件的属性都是通过它来识别的,如果上面你写错了,不会有任何问题,但是在运行的时候就会有问题,提示你没有指定宽度等什么。这个是不用联网的。

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

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

下面是一个简单的例子:

结构图:


MyView.javapackage 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"?>        

属性文件 value/attrs.xml<?xml version="1.0" encoding="utf-8"?>                    

运行结果:


更多相关文章

  1. 设置textview的字体
  2. android之4.0的系统主题style修改android:Theme.Holo.Light
  3. Android(安卓)底层开发概述(三)
  4. android:id="@+id/android:empty属性的用法举例
  5. activity的android:name类名的简写方式
  6. Android(安卓)Studio 简单介绍和使用问题小结
  7. android常用的一些属性说明
  8. android layout属性介绍
  9. 【Android布局】在程序中设置android:gravity 和 android:layout

随机推荐

  1. com/android/phone/INetworkQueryService
  2. android TextView中UrlSpan与文本中的超
  3. android中intent的作用
  4. Android开发--浅谈ExpandableListActivit
  5. Android(安卓)—— inflate( )使用
  6. 【Android 学习】之二维码扫描开发(闪光灯
  7. Android 异常处理
  8. 浅析Binder(六)——Java服务启动
  9. Android查询:模拟键盘鼠标事件(adb shell
  10. Android NavigationBar隐藏与浮层