Android 自定义文本视图,带粗体、普通和;斜体

Android 自定义文本视图,带粗体、普通和;斜体,android,textview,Android,Textview,我正在尝试使用自定义字体系列创建TextView。我已经创建了一个支持普通字体的。但是我无法在自定义TextView上实现bold/italic样式 这是我的自定义TextView类 public class KTextView extends TextView { public KTextView(Context context) { super(context); TypefaceHelper.setTypeface(context, this);

我正在尝试使用自定义字体系列创建
TextView
。我已经创建了一个支持普通字体的。但是我无法在自定义
TextView
上实现bold/italic样式

这是我的自定义
TextView

public class KTextView extends TextView {

    public KTextView(Context context) {
        super(context);
        TypefaceHelper.setTypeface(context, this);
    }

    public KTextView(Context context, AttributeSet attrs) {
        super(context, attrs);
        TypefaceHelper.setTypeface(context, this);
    }

    public KTextView(Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
        TypefaceHelper.setTypeface(context, this);
    }

}
public class TypefaceHelper {
private static final String FONT = "AvenirNext-Regular.otf";

private static Typeface typeface = null;

public static void setTypeface(Context context, TextView textView) {
    if (typeface == null) {
        typeface = Typeface.createFromAsset(context.getAssets(), FONT);
    }
    textView.setTypeface(typeface);
}
这是
TypefaceHelper

public class KTextView extends TextView {

    public KTextView(Context context) {
        super(context);
        TypefaceHelper.setTypeface(context, this);
    }

    public KTextView(Context context, AttributeSet attrs) {
        super(context, attrs);
        TypefaceHelper.setTypeface(context, this);
    }

    public KTextView(Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
        TypefaceHelper.setTypeface(context, this);
    }

}
public class TypefaceHelper {
private static final String FONT = "AvenirNext-Regular.otf";

private static Typeface typeface = null;

public static void setTypeface(Context context, TextView textView) {
    if (typeface == null) {
        typeface = Typeface.createFromAsset(context.getAssets(), FONT);
    }
    textView.setTypeface(typeface);
}
任何人都可以建议一种实现粗体和斜体样式的方法。

试试这个:

textview.setTypeface(typeface, Typeface.BOLD);
您还可以使用
ITALIC
BOLD\u ITALIC

对于自定义文本视图,请使用:

 public class MyTextView extends TextView {

      public MyTextView(Context context, AttributeSet attrs, int defStyle) {
          super(context, attrs, defStyle);
      }

     public MyTextView(Context context, AttributeSet attrs) {
          super(context, attrs);
      }

     public MyTextView(Context context) {
          super(context);
     }


     public void setTypeface(Typeface tf, int style) {
           if (style == Typeface.BOLD) {
                super.setTypeface(Typeface.createFromAsset(getContext().getAssets(), "fonts/fonts_name")/*, -1*/);
            } else {
               super.setTypeface(Typeface.createFromAsset(getContext().getAssets(), "fonts/fonts_name")/*, -1*/);
            }
      }
 }
见此: