标签: android android-theme
我的android项目中有两个主题,我的颜色资源color1为
<color name="color1">#b0b0ff</color>
我在我的程序中的某个地方使用此资源,如
资源res = context.getResources(); mycolor = res.getColor(R.color.color1);
问题: 我想在改变主题时改变颜色。那可能吗? 我看过Android Styles and Themes页面但我无法找到满足我要求的方式。