我在 TextDrawer 类中试过这个,但它不起作用
try { titleTypeface = Typeface.createFromAsset(context.getAssets(), "Face Your Fears.ttf");
} catch (Exception e) {
// Pretend that never happened, and use the default font
Log.d(TAG, "TITLE FONT: ");
Log.d(TAG, "default font");
}
titlePaint.setTypeface(titleTypeface);
textPaint.setTypeface(titleTypeface);
有什么建议么 ?