转自:http://blog.csdn.net/chuchu521/article/details/8052855


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

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


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"?>  
 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">  
       android:layout_width="fill_parent"   
     android:layout_height="wrap_content"   
     android:text="@string/hello"  
     />  
       android:layout_width="fill_parent"   
     android:layout_height="fill_parent"
     test:title="wo shi text"
     test:textSize="20px"  
     test:textColor="#fff"  
 />

 

属性文件 value/attrs.xml

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

   
          
    
  
 

运行结果:

更多相关文章

  1. Android导入工程提示 Invalid project description 详解
  2. (转载)Instrumentation 框架简介
  3. Android(安卓)渗透测试学习手册 第一章 Android(安卓)安全入门
  4. Testing和Instrumentation
  5. android的窗口机制分析---------类图关系
  6. Android程序加载动态库报错:UnsatisfiedLinkError: Cannot load l
  7. 编译可在Android上运行的glib库
  8. Android(安卓)4.0 SDK 环境搭建体验(Windows 7 Ultimate)
  9. Android自动化工具Appium的使用

随机推荐

  1. Fatal error: Call to undefined functio
  2. Linux环境下通过pdb调试Python程序
  3. linux 下的时间获取函数
  4. 像wget-like bittorrent客户端还是库?
  5. Android(安卓)照相机实现方式
  6. 疯狂了,Archlinux+Openbox+Rox+fbpanel我
  7. Linux 常用命令使用英文全称
  8. 【Azure】两台Linux虚拟机挂载共享文件
  9. Linux QT5.2下编译MySQL5.6.7驱动
  10. Linux使用wget下载整站