赞
踩
今天写一个自定义控件,为了提高使用者使用效率,需要对一个属性的所有可能属性值进行枚举(即,只能选择使用给出的属性值)
查了很多资料,自己总结一下。
如何写自定义控件就不在赘述了,网上很多大神写的都很好,此处只说明这一种情况。
attrs.xml
- <?xml version="1.0" encoding="utf-8"?>
- <resources>
- <declare-styleable name="custom_view">
- <attr name="checkType" format="string" />
- <attr name="type">
- <enum name="password" value="1" />
- <enum name="checkButton" value="2" />
- <enum name="phone" value="3" />
- </attr>
- </declare-styleable>
- </resources>
枚举属性只需指定 name
然后用 enum 标签 指定所有可能属性的 name和value(注:value只能为int型)
class中取属性值
int type = array.getInt(R.styleable.custom_view_type, 0);
这样就实现了,当开发者用此控件时,type属性,只能使用这里给出的3个属性值。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。