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"?>
<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>

运行结果:


更多相关文章

  1. Android的ADT不能自动生成R.java
  2. Android资源文件Res详解——ShapeDrawable
  3. Android日记之2012\01\15
  4. 手动编译android项目
  5. ADB适用方法
  6. Android(安卓)APK自动化测试
  7. Android(安卓)带Lottie动画的导航栏
  8. app launcher 名称不是清单文件中的android:label
  9. android监听文件和目录的创建删除移动等事件

随机推荐

  1. android 实现支付宝及微信内部捐赠功能
  2. android 图片放大缩小 多点缩放
  3. Android(安卓)软引用内存缓存图片
  4. Android判断后台服务是否开启的两种方法
  5. 实现Android(安卓)获取cache缓存的目录路
  6. Android(安卓)开源控件系列_2
  7. Android中自制通讯录中显示出数据库中的
  8. Android中的下拉列表-自定义选项界面样式
  9. ConstraintLayout子View设置match_parent
  10. Android(安卓)UI