我在 attrs.xml 上声明了这个属性:
<resources>
<attr name="customColorPrimary" format="color" value="#076B07"/>
</resources>
我需要得到它的值,它应该是“#076B07”,但我得到的是一个整数:“2130771968”
我以这种方式访问值:
int color = R.attr.customColorFontContent;
有没有正确的方法来获取这个属性的真实值?
谢谢