首页 > 其他 > 详细

TextView字体大小及颜色设置

时间:2016-03-24 16:13:51      阅读:113      评论:0      收藏:0      [点我收藏+]

TextView设置文字大小及颜色:

  1.1)通过xml配置

  

<TextView 

    android:layout_width="match_parent"

    android:layout_height="wrap_content"

    android:textColor="#FF0000"

    android:textSize="18sp"/>

  1.2)通过代码设置(方式一)

TextView textView = new TextView(this);
textView.setTextColor(Color.RED);
textView.setTextSize(TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_SP, 18, getResources().getDisplayMetrics()));
// textView.setText(Html.fromHtml("<font color=‘#00FF00‘>TextView</font>")); // 该方式不支持设置字体大小

      1.3)通过代码设(方式二,支持字体大小与颜色)

String text = "年收益率:5.88%";
SpannableString spanText = new SpannableString(text);
spanText.setSpan(new ForegroundColorSpan(Color.BLACK), 0, 5, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
spanText.setSpan(new TextAppearanceSpan(this, R.style.text_style), 5, text.length() - 1, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
spanText.setSpan(new ForegroundColorSpan(Color.RED), text.length() - 1, text.length(), Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
mTextView.setText(spanText);


Style文件:
<style name="text_style">
    <item name="android:textSize">30sp</item>
    <item name="android:textColor">@color/clr_red</item>
</style>

 

TextView字体大小及颜色设置

原文:http://www.cnblogs.com/xiaosw/p/5315882.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!