Android   发布时间:2022-04-28  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了Android xmlns 的作用及其自定义实例详解大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。

 Android xmlns 的作用及其自定义实例详解

 xmlns:Android="http://scheR_582_11845@as.android.com/apk/res/android的作用是:

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

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

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

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

下面是一个简单的例子:

结构图:

Android xmlns 的作用及其自定义实例详解

@H_527_1@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);
 }
}

 @H_527_1@main.xml

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout 
 xmlns:android="http://scheR_582_11845@as.android.com/apk/res/android" 
 xmlns:test="http://scheR_582_11845@as.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@R_140_6964@="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>

运行结果:

Android xmlns 的作用及其自定义实例详解

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持

大佬总结

以上是大佬教程为你收集整理的Android xmlns 的作用及其自定义实例详解全部内容,希望文章能够帮你解决Android xmlns 的作用及其自定义实例详解所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。
标签:xmlns