我正在尝试制作自定义视图并声明了如下样式属性:-
<resources>
<declare-styleable name="NewCircleView">
<attr name="radius" format="integer"/>
<attr name="circlecolor" format="color"/>
</declare-styleable>
</resources>
在 customview 的构造函数中,这些值的获取如下:-
circleradius=a.getInt(R.styleable.NewCircleView_radius, 0);//global var
circlecolor=a.getColor(R.styleable.NewCircleView_circlecolor, 0);//global var and a is the typed array
通过如下声明 xml 来使用视图:-
<com.customviews.NewCircleView
android:layout_below="@id/thetext"
android:layout_width="match_parent"
android:layout_height="fill_parent"
app:radius="10000"
app:circlecolor="@color/black"<!--this is defined in colors.xml
/>
在自定义视图中,当我将绘制对象设置为:-
thePaintObj.setColor(circlecolor);//circlecolor logs to an integer as expected
我没有得到 xml 中定义的颜色-“黑色”
但是,当我将颜色设置为
thePaintObj.setColor(Color.GRAY)
我得到了视图中的颜色
有人可以告诉我我会做错什么吗?
(注意:-如果您希望我发布更多代码,请告诉我)
EDIT1:- 发布我的colors.xml。看起来我的代码注释中并不清楚:-
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="red">#7f00</color>
<color name="blue">#770000ff</color>
<color name="green">#7700ff00</color>
<color name="yellow">#77ffff00</color>
<color name="black">#000000</color>
</resources>