您的位置:首页 > 移动开发 > Android开发

关于attr的用法,自己写的一个例子。

2015-09-28 18:16 519 查看
xmlns:rain="http://schemas.android.com/apk/res/com.jikexueyuan.rain"

rain是随便起的
http://schemas.android.com/apk是固定的
/res/com.jikexueyuan.rain  代表res下面的,下面用包名
然后在xml里面使用

<com.jikexueyuan.rain.v2.RainView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#ff000000"
rain:rainNum="50"
rain:size="20"
rain:rainColor="0xff00ff00"
rain:randColor="true"/>


在代码中如何解析attrs里面的值
//得到styleable
TypedArray ta = context.obtainStyledAttributes(attrs, R.styleable.RainView); //这个是attrs里面定义的declare-styleable的name

rainNum = ta.getInteger(R.styleable.RainView_rainNum, 80);
size = ta.getInteger(R.styleable.RainView_size, 20);
rainColor = ta.getInteger(R.styleable.RainView_rainColor, 0xffffffff);
randColor = ta.getBoolean(R.styleable.RainView_randColor, false);
//回收
ta.recycle();


attrs.xml文件的样式代码如下:

<?xml version="1.0" encoding="utf-8"?>
<resources>
<declare-styleable name="RainView">
<attr name="rainNum" format="integer"/>
<attr name="size" format="integer"/>
<attr name="rainColor" format="integer"/>
<attr name="randColor" format="boolean"/>
</declare-styleable>
</resources>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息