首页 > 代码库 > 如何导入本地的字体到工程中
如何导入本地的字体到工程中
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里面使用你下载的字体啦。
如何导入本地的字体到工程中
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。