今天,简单讲讲android里如何自定义属性。

这个其实我本来是想和自定义控件一起讲的,不过最近看一些自定义控件的代码时,老是因为没有完全理解自定义属性,导致看代码花费过多的时间,所以还是决定提前把这个内容讲一下。自定义属性对于自定义控件是一个基础,所以在网上搜索资料,把这个内容整理一下。这里记录一下。

一般情况下,我们自定义一个View的时候往往会重载它的三个构造函数,如下:

public class CustomView extends View {public CustomView(Context context) {this(context, null);}public CustomView(Context context, AttributeSet attrs) {this(context, attrs, 0);}public CustomView(Context context, AttributeSet attrs, int defStyleAttr) {super(context, attrs, defStyleAttr);}}

下面针对这三个构造函数,我们来一一讲解:
1、public CustomView(Context context)

这个构造函数一般在代码中来定义这个CustomView对象的时候会被调用,例如:

CustomView customView = new CustomView(context);

2、public CustomView(Context context, AttributeSet attrs)

这个构造函数一般是在布局文件中使用这个CustomView的时候会被调用,AttributeSet对应的就是设置的属性值集合,例如:

<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"><com.xxx.cn.customattr.CustomViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"app:text="Mirhunana"app:num="20"/></RelativeLayout>

3、public CustomView(Context context, AttributeSet attrs, int defStyleAttr)

这个构造函数一般是被第一个或者第二个构造函数来调用,它的作用是当没有为自定义的属性赋值的时候,就可以使用defStyleAttr里面定义的默认属性值。

简单讲讲,其实自定义控件的构造函数对应控件不同的创建方式。具体可以看之前的代码。

1. 为什么要自定义属性

  要使用属性,首先这个属性应该存在,所以如果我们要使用自己的属性,必须要先把他定义出来才能使用。但我们平时在写布局文件的时候好像没有自己定义属性,但我们照样可以用很多属性,这是为什么?我想大家应该都知道:系统定义好的属性我们就可以拿来用呗,但是你们知道系统定义了哪些属性吗?哪些属性是我们自定义控件可以直接使用的,哪些不能使用?什么样的属性我们能使用?这些问题我想大家不一定都弄得清除,下面我们去一一解开这些谜团。
  系统定义的所有属性我们可以在\sdk\platforms\android-xx\data\res\values目录下找到attrs.xml这个文件,这就是系统自带的所有属性,打开看看一些比较熟悉的:

<declare-styleable name="View"><attr name="id" format="reference" /><attr name="background" format="reference|color" /><attr name="padding" format="dimension" />...<attr name="focusable" format="boolean" />...
</declare-styleable><declare-styleable name="TextView"><attr name="text" format="string" localization="suggested" /><attr name="hint" format="string" /><attr name="textColor" /><attr name="textColorHighlight" /><attr name="textColorHint" />...
</declare-styleable><declare-styleable name="ViewGroup_Layout"><attr name="layout_width" format="dimension"><enum name="fill_parent" value="-1" /><enum name="match_parent" value="-1" /><enum name="wrap_content" value="-2" /></attr><attr name="layout_height" format="dimension"><enum name="fill_parent" value="-1" /><enum name="match_parent" value="-1" /><enum name="wrap_content" value="-2" /></attr>
</declare-styleable><declare-styleable name="LinearLayout_Layout"><attr name="layout_width" /><attr name="layout_height" /><attr name="layout_weight" format="float" /><attr name="layout_gravity" />
</declare-styleable><declare-styleable name="RelativeLayout_Layout"><attr name="layout_centerInParent" format="boolean" /><attr name="layout_centerHorizontal" format="boolean" /><attr name="layout_centerVertical" format="boolean" />...
</declare-styleable>

看看上面attrs.xml文件中的属性,发现他们都是有规律的分组的形式组织的。以declare-styleable 为一个组合,后面有一个name属性,属性的值为View 、TextView 等等,有没有想到什么?没错,属性值为View的那一组就是为View定义的属性,属性值为TextView的就是为TextView定义的属性…。

  因为所有的控件都是View的子类,所以为View定义的属性所有的控件都能使用,这就是为什么我们的自定义控件没有定义属性就能使用一些系统属性。

  但是并不是每个控件都能使用所有属性,比如TextView是View的子类,所以为View定义的所有属性它都能使用,但是子类肯定有自己特有的属性,得单独为它扩展一些属性,而单独扩展的这些属性只有它自己能有,View是不能使用的,比如View中不能使用android:text=“”。又比如,LinearLayout中能使用layout_weight属性,而RelativeLayout却不能使用,因为layout_weight是为LinearLayout的LayoutParams定义的。

  综上所述,自定义控件如果不自定义属性,就只能使用VIew的属性,但为了给我们的控件扩展一些属性,我们就必须自己去定义。

2. 怎样自定义属性

  翻阅系统的属性文件,你会发现,有的这中形式,有的是;这两种的区别就是attr标签后面带不带format属性,如果带format的就是在定义属性,如果不带format的就是在使用已有的属性,name的值就是属性的名字,format是限定当前定义的属性能接受什么值。

  打个比方,比如系统已经定义了android:text属性,我们的自定义控件也需要一个文本的属性,可以有两种方式:

第一种:我们并不知道系统定义了此名称的属性,我们自己定义一个名为text或者mText的属性(属性名称可以随便起的)

<resources><declare-styleable name="MyTextView"><attr name=“text" format="string" /></declare-styleable>
</resources>

第二种:我们知道系统已经定义过名称为text的属性,我们不用自己定义,只需要在自定义属性中申明,我要使用这个text属性
(注意加上android命名空间,这样才知道使用的是系统的text属性)

<resources><declare-styleable name="MyTextView"><attr name=“android:text"/></declare-styleable>
</resources>

为什么系统定义了此属性,我们在使用的时候还要声明?因为,系统定义的text属性是给TextView使用的,如果我们不申明,就不能使用text属性。

3. 属性值的类型format

format支持的类型一共有11种:
(1). reference:参考某一资源ID

  • 属性定义:
<declare-styleable name = "名称"><attr name = "background" format = "reference" />
</declare-styleable>

属性使用:

<ImageView android:background = "@drawable/图片ID"/>

(2). color:颜色值

  • 属性定义:
<attr name = "textColor" format = "color"
  • 属性使用:
<TextView android:textColor = "#00FF00" />

(3). boolean:布尔值

  • 属性定义:
<attr name = "focusable" format = "boolean" />
  • 属性使用:
<Button android:focusable = "true"/>

(4). dimension:尺寸值

  • 属性定义:
<attr name = "layout_width" format = "dimension" />
  • 属性使用:
<Button android:layout_width = "42dip"/>

(5). float:浮点值

  • 属性定义:
<attr name = "fromAlpha" format = "float" />
  • 属性使用:
<alpha android:fromAlpha = "1.0"/>

(6). integer:整型值

  • 属性定义:
<attr name = "framesCount" format="integer" />
  • 属性使用:
<animated-rotate android:framesCount = "12"/>

(7). string:字符串

  • 属性定义:
<attr name = "text" format = "string" />
  • 属性使用:
<TextView android:text = "我是文本"/>

(8). fraction:百分数

  • 属性定义:
<attr name = "pivotX" format = "fraction" />
  • 属性使用:
<rotate android:pivotX = "200%"/>

(9). enum:枚举值

  • 属性定义:
<declare-styleable name="名称"><attr name="orientation"><enum name="horizontal" value="0" /><enum name="vertical" value="1" /></attr>
</declare-styleable>
  • 属性使用:
<LinearLayout  android:orientation = "vertical">
</LinearLayout>

注意:枚举类型的属性在使用的过程中只能同时使用其中一个,不能 android:orientation = “horizontal|vertical"

(10). flag:位或运算

  • 属性定义:
<declare-styleable name="名称"><attr name="gravity"><flag name="top" value="0x30" /><flag name="bottom" value="0x50" /><flag name="left" value="0x03" /><flag name="right" value="0x05" /><flag name="center_vertical" value="0x10" />...</attr>
</declare-styleable>
  • 属性使用:
<TextView android:gravity="bottom|left"/>

注意:位运算类型的属性在使用的过程中可以使用多个值

(11). 混合类型:属性定义时可以指定多种类型值

  • 属性定义:
<declare-styleable name = "名称"><attr name = "background" format = "reference|color" />
</declare-styleable>
  • 属性使用:
<ImageView
android:background = "@drawable/图片ID" />
或者:
<ImageView
android:background = "#00FF00" />

  通过上面的学习我们已经知道怎么定义各种类型的属性,以及怎么使用它们,但是我们写好布局文件之后,要在控件中使用这些属性还需要将它解析出来。

4. 类中获取属性值

  在这之前,顺带讲一下命名空间,我们在布局文件中使用属性的时候(android:layout_width="match_parent")发现前面都带有一个android:,这个android就是上面引入的命名空间xmlns:android="http://schemas.android.com/apk/res/android”,表示到android系统中查找该属性来源。只有引入了命名空间,XML文件才知道下面使用的属性应该去哪里找(哪里定义的,不能凭空出现,要有根据)。

  如果我们自定义属性,这个属性应该去我们的应用程序包中找,所以要引入我们应用包的命名空间xmlns:openxu="http://schemas.android.com/apk/res-auto”,res-auto表示自动查找(适用于android studio),还有一种写法xmlns:openxu="http://schemas.android.com/apk/com.example.openxu.myview"com.example.openxu.myview为我们的应用程序包名(适用于Eclipse)。

  按照上面学习的知识,我们先定义一些属性,并写好布局文件。
先在res\values目录下创建attrs.xml,定义自己的属性:

<?xml version="1.0" encoding="utf-8"?>
<resources><declare-styleable name="MyTextView"><!--声明MyTextView需要使用系统定义过的text属性,注意前面需要加上android命名--><attr name="android:text" /><attr name="mTextColor" format="color" /><attr name="mTextSize" format="dimension" /></declare-styleable>
</resources>

在布局文件中,使用属性(注意引入我们应用程序的命名空间,这样在能找到我们包中的attrs):

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" xmlns:openxu="http://schemas.android.com/apk/res-auto" android:orientation="horizontal" android:layout_width="match_parent" android:layout_height="match_parent"> <com.example.openxu.myview.MyTextView android:layout_width="200dip" android:layout_height="100dip" openxu:mTextSize="25sp" android:text="我是文字" openxu:mTextColor ="#0000ff" android:background="#ff0000"/> </LinearLayout

>

在构造方法中获取属性值:

public MyTextView(Context context, AttributeSet attrs, int defStyleAttr) {super(context, attrs, defStyleAttr);TypedArray ta = context.obtainStyledAttributes(attrs, R.styleable.MyTextView);String text = ta.getString(R.styleable.MyTextView_android_text);int mTextColor = ta.getColor(R.styleable.MyTextView_mTextColor, Color.BLACK);int mTextSize = ta.getDimensionPixelSize(R.styleable.MyTextView_mTextSize, 100);ta.recycle();  //注意回收Log.v("openxu", “text属性值:"+mText);Log.v("openxu", "mTextColor属性值:"+mTextColor);Log.v("openxu", "mTextSize属性值:"+mTextSize);
}

log输出:

05-21 00:14:07.192: V/openxu(25652): mText属性值:我是文字
05-21 00:14:07.192: V/openxu(25652): mTextColor属性值:-16776961
05-21 00:14:07.192: V/openxu(25652): mTextSize属性值:75

到此为止,是不是发现自定义属性是如此简单?

属性的定义我们应该学的差不多了,但有没有发现构造方法中获取属性值的时候有两个比较陌生的类AttributeSetTypedArray,这两个类是怎么把属性值从布局文件中解析出来的?

5. Attributeset和TypedArray以及declare-styleable

Attributeset看名字就知道是一个属性的集合,实际上,它内部就是一个XML解析器,帮我们将布局文件中该控件的所有属性解析出来,并以key-value的兼职对形式维护起来。其实我们完全可以只用他通过下面的代码来获取我们的属性就行。

public MyTextView(Context context, AttributeSet attrs, int defStyleAttr) {super(context, attrs, defStyleAttr);int count = attrs.getAttributeCount();for (int i = 0; i < count; i++) {String attrName = attrs.getAttributeName(i);String attrVal = attrs.getAttributeValue(i);Log.e("openxu", "attrName = " + attrName + " , attrVal = " + attrVal);}
}

log输出:

05-21 02:18:09.052: E/openxu(14704): attrName = background , attrVal = @2131427347
05-21 02:18:09.052: E/openxu(14704): attrName = layout_width , attrVal = 200.0dip
05-21 02:18:09.052: E/openxu(14704): attrName = layout_height , attrVal = 100.0dip
05-21 02:18:09.052: E/openxu(14704): attrName = text , attrVal = 我是文字
05-21 02:18:09.052: E/openxu(14704): attrName = mTextSize , attrVal = 25sp
05-21 02:18:09.052: E/openxu(14704): attrName = mTextColor , attrVal = #0000ff

  发现通过Attributeset获取属性的值时,它将我们布局文件中的值原原本本的获取出来的,比如宽度200.0dip,其实这并不是我们想要的,如果我们接下来要使用宽度值,我们还需要将dip去掉,然后转换成整形,这多麻烦。其实这都不算什么,更恶心的是,backgroud我应用了一个color资源ID,它直接给我拿到了这个ID值,前面还加了个@,接下来我要自己获取资源,并通过这个ID值获取到真正的颜色。

我们再换TypedArray试试。
  在这里,穿插一个知识点,定义属性的时候有一个declare-styleable,他是用来干嘛的,如果不要它可不可以?答案是可以的,我们自定义属性完全可以写成下面的形式:

<?xml version="1.0" encoding="utf-8"?>
<resources><attr name="mTextColor" format="color" /><attr name="mTextSize" format="dimension" />
</resources>

1

2

3

4

5

之前的形式是这样的:

<?xml version="1.0" encoding="utf-8"?>
<resources><declare-styleable name="MyTextView"><attr name="android:text" /><attr name="android:layout_width" /><attr name="android:layout_height" /><attr name="android:background" /><attr name="mTextColor" format="color" /><attr name="mTextSize" format="dimension" /></declare-styleable>
</resources>或者:
<?xml version="1.0" encoding="utf-8"?>
<resources><!--定义属性--><attr name="mTextColor" format="color" /><attr name="mTextSize" format="dimension" /><declare-styleable name="MyTextView"><!--生成索引--><attr name="android:text" /><attr name="android:layout_width" /><attr name="android:layout_height" /><attr name="android:background" /><attr name=“mTextColor" /><attr name="mTextSize"  /></declare-styleable>
</resources>

  我们都知道所有的资源文件在R中都会对应一个整型常亮,我们可以通过这个ID值找到资源文件。
  属性在R中对应的类是public static final class attr,如果我们写了declare-styleable,在R文件中就会生成styleable类,这个类其实就是将每个控件的属性分组,然后记录属性的索引值,而TypedArray正好需要通过此索引值获取属性。

public static final class styleablepublic static final int[] MyTextView = {0x0101014f, 0x7f010038, 0x7f010039};public static final int MyTextView_android_text = 0;public static final int MyTextView_mTextColor = 1;public static final int MyTextView_mTextSize = 2;
}

使用TypedArray获取属性值:

public MyTextView(Context context, AttributeSet attrs, int defStyleAttr) {super(context, attrs, defStyleAttr);TypedArray ta = context.obtainStyledAttributes(attrs, R.styleable.MyTextView);String mText = ta.getString(R.styleable.MyTextView_android_text);int mTextColor = ta.getColor(R.styleable.MyTextView_mTextColor, Color.BLACK);int mTextSize = ta.getDimensionPixelSize(R.styleable.MyTextView_mTextSize, 100);float width = ta.getDimension(R.styleable.MyTextView_android_layout_width, 0.0f);float hight = ta.getDimension(R.styleable.MyTextView_android_layout_height,0.0f);int backgroud = ta.getColor(R.styleable.MyTextView_android_background, Color.BLACK);ta.recycle();  //注意回收Log.v("openxu", "width:"+width);Log.v("openxu", "hight:"+hight);Log.v("openxu", "backgroud:"+backgroud);Log.v("openxu", "mText:"+mText);Log.v("openxu", "mTextColor:"+mTextColor);Log.v("openxu", "mTextSize:"+mTextSize);ext, 0, mText.length(), mBound);
}

log输出:

05-21 02:56:49.162: V/openxu(22630): width:600.0
05-21 02:56:49.162: V/openxu(22630): hight:300.0
05-21 02:56:49.162: V/openxu(22630): backgroud:-12627531
05-21 02:56:49.162: V/openxu(22630): mText:我是文字
05-21 02:56:49.162: V/openxu(22630): mTextColor:-16777216
05-21 02:56:49.162: V/openxu(22630): mTextSize:100

  看看多么舒服的结果,我们得到了想要的宽高(float型),背景颜色(color的十进制)等,TypedArray提供了一系列获取不同类型属性的方法,这样就可以直接得到我们想要的数据类型,而不用像Attributeset获取属性后还要一个个处理才能得到具体的数据,实际上TypedArray是为我们获取属性值提供了方便,注意一点,TypedArray使用完毕后记得调用 ta.recycle();回收 。

简单讲讲,这部分内容基本是从网上一个博客专家哪里拷贝来的,别人写的太好了,我自己没有什么可以添加的。主要就是通过在value文件夹下定义一个属性文件attrs.xml,然后使用declare-styleable命名属性集合名称,使用attr标签定义属性。属性定义可以使用android存在的属性,也可以使用format自定义属性。format支持的类型一共有11种,具体的可以看上面的代码。

然后在自定义控件里通过Attributeset和TypedArray获取自定义属性,具体是通过TypedArray ta = context.obtainStyledAttributes(attrs, R.styleable.MyTextView);获取属性的集合,然后然后通过键值对获取属性值,具体是通过String mText = ta.getString(R.styleable.MyTextView_android_text);获取对应的属性。这里需要注意一点,这里的key是属性集合名称_属性名称。获取完成后,需要ta.recycle();  回收资源。

android 自定义属性就讲完了。

就这么简单。



android 自定义属性相关推荐

  1. Android自定义属性

    上一篇讲解了Android自定义View,这篇来讲解一下Android自定义属性的使用,让你get新技能.希望我的分享能帮助到大家. 做Android布局是件很享受的事,这得益于他良好的xml方式.使 ...

  2. Android自定义属性,format详解

    1. reference:参考某一资源ID. (1)属性定义: <declare-styleable name="名称"><attr name="bac ...

  3. android自定义属性的使用

     最近在学习一个开源的项目,看到人家定义的资源文件有如下标签: 而在该项目中,利用以上路径追溯下去,会追溯到这么一个类文件,所以就迷糊了,定义布局文件跟类有毛关系<比较二>查了下 原来 ...

  4. android 自定义属性步骤

    一个程序能否吸引用户,漂亮的UI和优秀的交互是至关重要的因素.因此现在大多数应用不满足了系统提供好的UI组件,而使用自定义组件来达到更好的显示效果.使用自定义组件大多数情况又会使用自定义属性.本文记录 ...

  5. Android 自定义属性时TypedArray的使用

    对于自定义属性,遵循以下几步,就可以实现: 自定义一个CustomView(extends View )类 编写res/values/attrs.xml,在其中编写styleable和item等标签元 ...

  6. android自定义属性dimen,android代码里的dimen

    在自定义控件中使用自定义属性时,经常需要使用java代码获取在xml中定义的尺寸,相关有以下三个函数 getDimension() getDimensionPixelOffset() getDimen ...

  7. Android 自定义属性(attrs.xml,TypedArray)

    做Android布局是件很享受的事,这得益于他良好的xml方式.使用xml可以快速有效的为软件定义界面.可是有时候我们总感觉官方定义的一些基本组 件不够用,自定义组件就不可避免了.那么如何才能做到像官 ...

  8. android自定义属性dimen,Android获取非自定义属性值

    以Spinner的entries属性为例 创建values/attrs.xml文件,添加下述代码 获取属性 public AutoSpinner(Context context, AttributeS ...

  9. Android自定义属性时TypedArray的使用方法

    有时候android传统的页面布局不足以满足我们的需求,常常需要自己定义view,通常继承View,然后重写构造方法以及onDraw等函数,再 具体实现自己定义的复杂view.我们知道在给控件赋属性时 ...

最新文章

  1. 区块链常用架构是什么?它和保险业又如何结合?
  2. 简单聊聊Glide的内存缓存
  3. Java描述设计模式(03):工厂方法模式
  4. css使图片变成黑白效果 - 代码篇
  5. forEach、for...in、for...of
  6. 提高linux运行速度,教你如何提高Linux操作系统的运行速度
  7. Windows与Linux的UEFI引导修复教程
  8. 希捷7200.12 固件问题重新上演
  9. tablepc是什么平板电脑_什么是TABLET PC,TABLET PC有什么功能呢?
  10. 聊聊UI的扁平化设计趋势与拟物化设计
  11. Flask debug模式算pin码
  12. 技术美术知识学习_04:PBR的个人理解
  13. L. Lifeguards(平面几何 点平分成两边)
  14. windows 安装达梦数据库Python 报错:fatal error C1083: Cannot open include file: ‘DPI.h‘: No such file or direc
  15. 服务器在线监控,EasyNmon
  16. BLDC 电机的反电动势电压仿真
  17. Scale 编程基础 A(变量声明、基本数据类型、运算符、文件读写、分支与循环、数据结构)
  18. C++实现员工工资管理系统
  19. 华为p20如何连接计算机,华为P20pro如何快捷传文件到电脑?华为P20pro快捷传文件到电脑的方法...
  20. ExcelVba_调用jQuery计算Md5和CRC32

热门文章

  1. 云虚拟主机bch 和 云服务器bcc,云虚拟主机bch和云服务器bcc
  2. 人工智能技术助力民族语言保护大有可为
  3. android shareSDK 微博分享案例
  4. 关于app inventor跨界面连接蓝牙并且一键SOS拨打电话求救(三)
  5. MarkdownPad2 插入数学公式Mathjax
  6. R和RStudio软件安装
  7. 对一个整形数组进行顺序排列
  8. 推荐一款 GitHub 星标 11.5K 的神器,可将任何设备转换为电脑辅助屏幕
  9. 怎么删除win10的系统更新服务器,教你怎么永久删除Win10更新助手(Update Assistant)...
  10. 同位语从句 vs 定语从句 区别