我还没有找到一种方法来做到这一点。可能吗?
Answers:
好吧,我无法弄清楚如何使用可用的类,因此TypefaceSpan我自己扩展了它,现在它对我有效。这是我所做的:
package de.myproject.text.style;
import android.graphics.Paint;
import android.graphics.Typeface;
import android.text.TextPaint;
import android.text.style.TypefaceSpan;
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);
    }
}
    尽管notme本质上是正确的主意,但是由于“家庭”变得多余,因此给出的解决方案有点琐。这也有一点不正确,因为TypefaceSpan是Android知道的特殊跨度之一,并且期望它具有与ParcelableSpan接口有关的特定行为(notme的子类无法正确实现,也无法实现)。
一个更简单,更准确的解决方案是:
public class CustomTypefaceSpan extends MetricAffectingSpan
{
    private final Typeface typeface;
    public CustomTypefaceSpan(final Typeface typeface)
    {
        this.typeface = typeface;
    }
    @Override
    public void updateDrawState(final TextPaint drawState)
    {
        apply(drawState);
    }
    @Override
    public void updateMeasureState(final TextPaint paint)
    {
        apply(paint);
    }
    private void apply(final Paint paint)
    {
        final Typeface oldTypeface = paint.getTypeface();
        final int oldStyle = oldTypeface != null ? oldTypeface.getStyle() : 0;
        final int fakeStyle = oldStyle & ~typeface.getStyle();
        if ((fakeStyle & Typeface.BOLD) != 0)
        {
            paint.setFakeBoldText(true);
        }
        if ((fakeStyle & Typeface.ITALIC) != 0)
        {
            paint.setTextSkewX(-0.25f);
        }
        paint.setTypeface(typeface);
    }
}
    TypefaceSpan但是Marco展示了一个使用该示例的有效示例。哪个是正确的?本杰明你测试过你的例子了吗?
                    TypefaceSpan。我只是强烈建议  你不要。这样做破坏了Liscov的替代原则,这是极其糟糕的做法。您已经对通过family名称指定字体并且可以打包的类进行了子分类。你那么完全覆盖该行为,作出的family参数混淆和毫无意义的,而且Span也没有parcelable。
                    如果有人对本杰明代码的C#Xamarin版本感兴趣:
using System;
using Android.Graphics;
using Android.Text;
using Android.Text.Style;
namespace Utils
{
    //https://stackoverflow.com/a/17961854/1996780
    /// <summary>A text span which applies <see cref="Android.Graphics.Typeface"/> on text</summary>
    internal class CustomFontSpan : MetricAffectingSpan
    {
        /// <summary>The typeface to apply</summary>
        public Typeface Typeface { get; }
        /// <summary>CTor - creates a new instance of the <see cref="CustomFontSpan"/> class</summary>
        /// <param name="typeface">Typeface to apply</param>
        /// <exception cref="ArgumentNullException"><paramref name="typeface"/> is null</exception>
        public CustomFontSpan(Typeface typeface) =>
            Typeface = typeface ?? throw new ArgumentNullException(nameof(typeface));
        public override void UpdateDrawState(TextPaint drawState) => Apply(drawState);
        public override void UpdateMeasureState(TextPaint paint) => Apply(paint);
        /// <summary>Applies <see cref="Typeface"/></summary>
        /// <param name="paint"><see cref="Paint"/> to apply <see cref="Typeface"/> on</param>
        private void Apply(Paint paint)
        {
            Typeface oldTypeface = paint.Typeface;
            var oldStyle = oldTypeface != null ? oldTypeface.Style : 0;
            var fakeStyle = oldStyle & Typeface.Style;
            if (fakeStyle.HasFlag(TypefaceStyle.Bold))
                paint.FakeBoldText = true;
            if (fakeStyle.HasFlag(TypefaceStyle.Italic))
                paint.TextSkewX = -0.25f;
            paint.SetTypeface(Typeface);
        }
    }
}
和用法:(在活动OnCreate中)
var txwLogo = FindViewById<TextView>(Resource.Id.logo);
var font = Resources.GetFont(Resource.Font.myFont);
var wordtoSpan = new SpannableString(txwLogo.Text);
wordtoSpan.SetSpan(new CustomFontSpan(font), 6, 7, SpanTypes.InclusiveInclusive); //One caracter
txwLogo.TextFormatted = wordtoSpan;  
    可扩展的字体:为了在文本的某些部分设置不同的字体,可以使用自定义TypefaceSpan,如以下示例所示:
spannable.setSpan( new CustomTypefaceSpan("SFUIText-Bold.otf",fontBold), 0,
firstWord.length(), Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
spannable.setSpan( new CustomTypefaceSpan("SFUIText-Regular.otf",fontRegular),
firstWord.length(), firstWord.length() + lastWord.length(),
Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
text.setText( spannable );
但是,为了使上述代码正常工作,必须从类TypefaceSpan派生出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);
    }
}