Я надеюсь, что это сработает для вас.
Объявите переменную следующим образом:
Typeface typeface;
Инициализируйте переменную следующим образом:
typeface = Typeface.createFromAsset(getAssets(), "fonts/yourFontName.ttf");
Установите вид какthis:
yourView.setTypeface(typeface);
приведенный выше код предназначен для установки шрифта для представления.
Для CustomTypeFaceSpan добавьте нижеприведенный класс в свой пакет.
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);
}
}
Используйте вышеприведенный класс, как этот:
Typeface typeface = Typeface.createFromAsset(getAssets(), "fonts/YourFontName.ttf");
SpannableString mNewTitle = new SpannableString("Your String Value");
mNewTitle.setSpan(new CustomTypefaceSpan("", typeface), 0, mNewTitle.length(), Spannable.SPAN_INCLUSIVE_INCLUSIVE);
yourView.setText(mNewTitle);