TextView部分文字设置指定颜色和大小和字体

转载:http://blog.csdn.net/qq435757399/article/details/42921357#

1.在string.xml文件中:

[html]  view plain  copy
 
  1. <string name="exchange_txt_hint"><Data>%1$s牛兑换%2$s%3$s 上网时长]]>Data>string>  

2. 在Java代码中

[java]  view plain  copy
 
  1. tv = (TextView) findViewById(R.id.tv);  
  2.         String exchange = getResources().getString(R.string.exchange_txt_hint);  
  3.   
  4.                 tv.setText(Html.fromHtml(exchange));  

效果图:



你可能感兴趣的:(Android)