如何导入本地的字体到工程中
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何导入本地的字体到工程中相关的知识,希望对你有一定的参考价值。
1.把字体文件下载下来,过程中唯一需要的是.ttf文件
2.在工程的app→src→main这个目录下新建一个directory,命名为assets
3.把.ttf文件放在assets里
4.在MainActivity.java 里面更改添加以下代码
1 @Override 2 protected void onCreate(Bundle savedInstanceState) { 3 super.onCreate(savedInstanceState); 4 setContentView(R.layout.activity_main); 5 String customFont = "汉仪南宫体简.ttf"; 6 Typeface typeface = Typeface.createFromAsset(getAssets(), customFont); 7 TextView textView = (TextView) findViewById(R.id.play_now); 8 TextView textView1 = (TextView)findViewById(R.id.local_music); 9 //play_now和local_music是view的id 10 textView.setTypeface(typeface); 11 textView1.setTypeface(typeface); 12 }
然后就可以在指定的view里面使用你下载的字体啦。
以上是关于如何导入本地的字体到工程中的主要内容,如果未能解决你的问题,请参考以下文章