1

我创建了一个自定义文本视图来设置自定义字体并为整个应用程序设置 html 文本。因为我的应用在很多地方都有这两种功能。在这种情况下,我可以将自定义字体设置为整个 android 应用程序,效果很好。但未能为自定义文本视图应用 html 文本。

我的限制:

  1. 我不想获取 textview 并使用setText(Html.fromHtml("Some text")). 当我在代码中使用它时它正在工作,但我想将文本strings.xml用作<string name="my_app"><![CDATA[My Whole <b>app</b>lication]]></string>
  2. 我无法在自定义类函数中覆盖 settext,因为它是最终方法。
  3. 我有将近 100 个 html 文本。我不想在代码中硬编码这些字符串。请帮忙。

我的自定义类:

public class CustomTextView extends TextView {

    public CustomTextView(Context context) {
        super(context);
        // TODO Auto-generated constructor stub
    }

    public CustomTextView(Context context, AttributeSet attrs) {
        super(context, attrs);
        // TODO Auto-generated constructor stub
    }

    public CustomTextView(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
        // TODO Auto-generated constructor stub 
    }

    @Override
    public void setTypeface(Typeface tf) {
        // TODO Auto-generated method stub
        super.setTypeface(Typeface.createFromAsset(getContext().getAssets(), "fonts/gothic.ttf"));
    }
}

我的布局文件:

<com.views.CustomTextView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="@string/my_app" />

我得到的输出为:我的应用程序

我希望输出为:我的应用程序

粗体字应用程序

有没有办法做到这一点?

4

1 回答 1

1

你考虑过使用 SpannbleString 吗? 如何将 TypefaceSpan 或 StyleSpan 与自定义字体一起使用?

是您可以在 SpannableString 上应用的不同跨度。

 public void setSpan(){
    Spannable spantext = new SpannableString("My application");


    spantext.setSpan(new StyleSpan(Typeface.BOLD), 3//Start of span, 6//End of span, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
    Typeface HelveticaNeueBoldItalic = Typeface.createFromAsset(getActivity().getAssets(), "fonts/HelveticaNeueBoldItalic.ttf");
    spantext.setSpan(new CustomTypefaceSpan("", HelveticaNeueBoldItalic ), 0, text.lenght(), Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);



    TextView text;

    text.setText(spantext);
}






 public class CustomTypefaceSpan extends TypefaceSpan {
        private final Typeface newType;

        public CustomTypefaceSpan(String family, Typeface type) {
            super(family);
            newType = type;
        }

        @Override
        public void updateDrawState(TextPaint ds) {
            applyCustomTypeFace(ds, newType);
        }

        @Override
        public void updateMeasureState(TextPaint paint) {
            applyCustomTypeFace(paint, newType);
        }

        private static void applyCustomTypeFace(Paint paint, Typeface tf) {
            int oldStyle;
            Typeface old = paint.getTypeface();
            if (old == null) {
                oldStyle = 0;
            } else {
                oldStyle = old.getStyle();
            }

            int fake = oldStyle & ~tf.getStyle();
            if ((fake & Typeface.BOLD) != 0) {
                paint.setFakeBoldText(true);
            }

            if ((fake & Typeface.ITALIC) != 0) {
                paint.setTextSkewX(-0.25f);
            }

            paint.setTypeface(tf);
        }
    }
于 2013-06-26T14:25:32.673 回答