找了很多解决方案,但是都会报错,只好边借鉴着前辈们的思路,边自己尝试改代码了QWQ
前面准备:要先把使用的字体文件放入到工具中
新建一个名叫assets的文件夹,然后把字体文件复制到里面,如图
这里我需要分别在两种情况下使用两种字体,所以示意图上有两种字体。
1.如果只是单独设置一两个,使用这个代码就可以了。
例子使用:HYXiaoBoZheZhiTiJ字体
TextView tv = (TextView) findViewById(R.id.textTittle);
//从assert中获取有资源,获得app的assert
// 采用getAserts(),通过给出在assert/下面的相对路径
// 在实际使用中,字体库可能存在于SD卡上
// 可以采用createFromFile()来替代createFromAsset
Typeface face = Typeface.createFromAsset(getAssets(),"fonts/HYXiaoBoZheZhiTiJ.ttf");
tv.setTypeface(face);
2.如果需要大量使用自己的自定义字体,类可以完成自定义字体,之后再哪里需要使用自定义字体,就把路径替换原有的TextView就完成了。
例子使用:汉仪黑仔体字体
新建一个类名叫MyTextView继承TextView,重写2个参数的构造方法,源码如下
public classMyTextViewextendsandroid.support.v7.widget.AppCompatTextView {
//Simple constructor to use when creating a view from code
publicMyTextView(Context context) {
super(context);
}
/**
* 初始化字体
*
*@paramcontext
*/
//Constructor that is called when inflating a view from XML
publicMyTextView(Context context, AttributeSet attrs) {
super(context, attrs);
init(context);
}
//Perform inflation from XML and apply a class-specific base style
publicMyTextView(Context context, AttributeSet attrs,intdefStyle) {
super(context, attrs, defStyle);
}
public voidinit(Context context) {
/**
* 初始化字体
*
*/
Typeface tf = Typeface.createFromAsset(getContext().getAssets(),"汉仪黑仔体.ttf");
setTypeface(tf ,1);
}
然后我们复制MyTextView的路径到activity_main中,替换原有的TextView,
我这里的路径是com.example.administrator.eats.MyTextView
修改activity_main中的代码:
好了,到这里,我们就完成了自定义字体,现在我们运行程序看看效果!(其实还在设计啦,只是对于这个自定义字体的事情已经结束了,故放上草图,见谅见谅!!!)
写程序过程遇到的问题:
一开始我运行遇到的问题是Binary XML file line # : Error inflating class
反正核实后,得到知识点是:
自定义View时三个构造函数都要实现(我只构造了一个)
View(Context context) //Simple constructor to use when creating a view from code
View(Context context, AttributeSet attrs) //Constructor that is called when inflating a view from XML
View(Context context, AttributeSet attrs, int defStyle) //Perform inflation from XML and apply a class-specific base style
第一个是用来在代码中创建View使用,第二个和第三个是从xml中创建View时使用
不过后来很奇怪=-=当我运行成功我的代码,达到我想要的效果的时候,我发现我删掉那2个我自定义的构造函数时,还是能运行,我也搞不到啥子贵了_(:3J∠)_不管了,继续做自己要的界面去了。以上几句都是本Android萌新的逼逼叨,如果有大佬看见了可以给我解释一下就谢谢了!粗略感觉可能是我之前把代码改的面目全非的缘故。
参考:
http://blog.csdn.net/javaandroid730/article/details/53122953
http://www.it1352.com/76703.html
http://blog.csdn.net/samuel__liu/article/details/53761683
http://blog.csdn.net/xiaoxuantengkong/article/details/40864065