如何在Android Studio中以特定方式编辑colors.xml

时间:2016-12-05 10:47:22

标签: android xml android-studio colors

有没有可能在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文件中的任何地方调用该变量吗?

1 个答案:

答案 0 :(得分:1)

当然你用颜色声明它是这样的:

<color name="colorPrimaryDark">#303F9F</color>

然后你可以像这样访问它:

<item name="colorPrimary">@color/colorPrimary</item>