码迷,mamicode.com
首页 > 其他好文 > 详细

TextView 设置颜色无效

时间:2015-07-22 20:42:52      阅读:98      评论:0      收藏:0      [点我收藏+]

标签:

通过代码setTextColor时 如果color是一个资源文件 ,则只会显示默认效果。不会有选择器效果

1. 解决:

ColorStateList colors = getContext().getResources().getColorStateList(R.color.radio_txt);  

radioButton.setTextColor(colors);  

2. TextView 使用别的style

mTxtView = new TextView(getContext(), null, R.attr.vpiTabPageIndicatorStyle);


TextView 设置颜色无效

标签:

原文地址:http://www.cnblogs.com/pandans/p/4668463.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!