android 使用colors.xml设置颜色

设置Button(btn)背景色:

color.xml如下:
 xml version="1.0" encoding="utf-8"?>  
 <resources>  
     <drawablename="red">#f00drawable>  
     <drawablename="green">#0f0drawable>  
     <drawablename="gray">#cccdrawable>  
 resources>  

方法一:

1 btn.setBackgroundColor(getResources().getColor(R.color.green));

 方法二:

Resources resources =YourActivity.this.getResources();  
Drawable drawable = resources.getDrawable(R.color.green);
btn.setBackgroundDrawable(drawable);

 

 

原文链接:http://www.cnblogs.com/FlyFive/archive/2013/01/03/2843230.html

 

 

转载于:https://www.cnblogs.com/FlyFive/archive/2013/01/03/2843230.html

你可能感兴趣的:(移动开发)