有没有可能在colors.xml中做这样的事情 例如:
//define a constants with color name and color value
red = #ea1111
// and than use it like this
<color name="colorPrimary">red</color>
我的问题是:我可以在xml中声明类似全局变量的东西,并在xml文件中的任何地方调用该变量吗?
答案 0 :(得分:1)
当然你用颜色声明它是这样的:
<color name="colorPrimaryDark">#303F9F</color>
然后你可以像这样访问它:
<item name="colorPrimary">@color/colorPrimary</item>