RadioButton字体颜色选择器换不了
tangsw7 opened this issue · 5 comments
tangsw7 commented
自定义Attr了,radiobutton的图片可以换,但是文字用颜色选择器改变不了,还是默认皮肤颜色
burgessjp commented
看看你的自定义Attr部分代码
tangsw7 commented
public class RadioButtonTextAttr extends SkinAttr {
@OverRide
protected void applySkin(View view) {
if (view instanceof RadioButton) {
if (isDrawable()) {
RadioButton radioButton = (RadioButton) view;
radioButton.setTextColor(SkinResourcesUtils.getColorStateList(attrValueRefId));
}
}
}
}
tangsw7 commented
好像是所有字体颜色选择器都不行,只换字体颜色是可以换的
burgessjp commented
不好意思,最近有点忙,没能及时回复,有时间了我才能去看看这个问题,其实你也可以先看看源码呃呃实现。
Sent from my Xiaomi MI 6 using FastHub
burgessjp commented
我在demo中加了一个颜色选择器的例子,完全是可以的,不知道你是怎么使用的,你可以看最新的demo。