textview 动态改变点击态效果

android中设置TextView的颜色有方法setTextColor,这个方法被重载了,可以传入两种参数 

Java代码:
[java]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. public void setTextColor(int color) {   
  2.     mTextColor = ColorStateList.valueOf(color);    
  3.     updateTextColors();    
  4. }    
  5.     
  6. public void setTextColor(ColorStateList colors) {    
  7.     if (colors == null) {    
  8.         throw new NullPointerException();    
  9.     }    
  10.     
  11.     mTextColor = colors;    
  12.     updateTextColors();    
  13. }    

 

下边就分别写出怎么使用这两个方法设置TextView的颜色:

 

Java代码:
[java]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. TextView tv = new TextView(this);    
  2. tv.setText("Test set TextView's color.");    
  3. //方案一:代码中通过argb值的方式    
  4. tv.setTextColor(Color.rgb(255255255));    

 

这种方法也就是传入int color值,这个int不是R文件中自动分配的int值,所以要注意。这是Color类中的静态方法构造出来的颜色int值。

 

Java代码:
[java]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. Resources resource = (Resources) getBaseContext().getResources();    
  2. ColorStateList csl = (ColorStateList) resource.getColorStateList(R.color.my_color);    
  3. if (csl != null) {    
  4.     tv.setTextColor(csl);    
  5. }    

 

这种方法是通过ColorStateList得到xml中的配置的颜色的。好多需要xml中配置的都要类似这样的映射xml文件。

还有种方法Java代码:

[java]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. XmlResourceParser xrp = getResources().getXml(R.color.my_color);    
  2. try {    
  3.     ColorStateList csl = ColorStateList.createFromXml(getResources(), xrp);    
  4.     tv.setTextColor(csl);    
  5. catch (Exception e) {    
  6. }    

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值