zoukankan      html  css  js  c++  java
  • 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>
  • 相关阅读:
    算法
    nginx配置https
    IE中JS跳转丢失referer的问题
    js 调用字符串类型的 js语句
    移动端iOS中input聚焦不灵敏
    上传图片转换格式为base64并预览
    转:手机号脱敏
    转:Lodash之throttle(节流)与debounce(防抖)总结
    转:tinyMCE中图片的自定义上传
    chrome input 输入框去掉黄色
  • 原文地址:https://www.cnblogs.com/xiaosw/p/5315882.html
Copyright © 2011-2022 走看看