可以通过Typeface 对象得到字体 可以把字体放在asset 或者放在对应文件
Typeface typeface = Typeface.createFromAsset(context.getAssets(), "zt.ttf");
mPaint1.setTypeface(typeface); //字体
editText.setTypeface(typeface);//设置文本框字体
可以通过Typeface 对象得到字体 可以把字体放在asset 或者放在对应文件
Typeface typeface = Typeface.createFromAsset(context.getAssets(), "zt.ttf");
mPaint1.setTypeface(typeface); //字体
editText.setTypeface(typeface);//设置文本框字体