Android 初始化字体

示例

private Typeface myFont;

// 一个好的做法可能是在自定义的onCreate()中调用此方法
//应用程序类,并将“ this”作为上下文传递。您的字体可以使用了
// 只要您的应用有效
public void initFont(Context context) {
    myFont = Typeface.createFromAsset(context.getAssets(), "fonts/Roboto-Light.ttf");
}