设置Button(btn)背景色:

color.xml如下:
 <?xml version="1.0" encoding="utf-8"?>  
 <resources>  
     <drawablename="red">#f00</drawable>  
     <drawablename="green">#0f0</drawable>  
     <drawablename="gray">#ccc</drawable>  
 </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

 

 

相关文章:

  • 2022-12-23
  • 2021-09-11
  • 2022-12-23
  • 2021-11-19
  • 2021-11-19
  • 2021-05-14
  • 2021-12-17
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-11-18
  • 2022-12-23
  • 2021-07-11
  • 2021-10-08
  • 2022-12-23
相关资源
相似解决方案