TextView textView =(TextView)findViewById(R.id.custom);
Typeface typeFace =Typeface.createFromAsset(getAssets(),"fonts/HandmadeTypewriter.ttf");
textView.setTypeface(typeFace);
将字体文件保存在assets/fonts/目录下,记得assets目录是跟res同级,而不是res目录里面
TextView textView =(TextView)findViewById(R.id.custom);
Typeface typeFace =Typeface.createFromAsset(getAssets(),"fonts/HandmadeTypewriter.ttf");
textView.setTypeface(typeFace);