TextView字体大小及颜色设置

Posted w愿得一人心

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了TextView字体大小及颜色设置相关的知识,希望对你有一定的参考价值。

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字体大小及颜色设置的主要内容,如果未能解决你的问题,请参考以下文章

android字体颜色如何设置?

UITextView中,能不能单独设置每行文字的字体,颜色,大小

如何解析包含样式、颜色、字体系列、字体大小等 Html 标签的数据,并在 android 的 textview 中设置

如何设置TextView里面字体的大小

java中怎么设置label的字体大小及颜色显示

android studio黑色主题怎么设置字体颜色