0

我想在我的 android 应用程序上使用外部字体 Impact。目前,让我使用我的字体的代码如下所示:

    Paint textPaint = new Paint();
    textPaint.setAntiAlias(true);
    textPaint.setTextSize(FONT_SIZE);
    textPaint.setColor(0xFFFFFFFF);
    Log.i(TAG, "- Paint: " + textPaint);

    Typeface face = textPaint.getTypeface();
    Log.i(TAG, "- default typeface: " + face);

    face = Typeface.DEFAULT_BOLD;
    Log.i(TAG, "- new face: " + face);
    textPaint.setTypeface(face);

但这会导致我要使用的字体的通用版本不好。对于那些不熟悉 Impact 字体的人来说,它是一种可以让你制作 meme 的字体。有谁知道我应该怎么做才能使用 Impact 字体而不是 DEFAULT_BOLD?

4

1 回答 1

2

用于canvas绘制文字,

Typeface  mFace = Typeface.createFromAsset(getContext().getAssets(),"fonts/samplefont.ttf");
Paint mPaint = new Paint ();
mPaint.setTypeface(mFace);
canvas.drawText("Default", 10, 100, mPaint);

TextView可以使用setTypeface方法来做到这一点;

于 2012-11-26T03:47:50.383 回答