(1)在Android项目main目录下创建assets目录,用来存放字体,如图所示:
15.png
(2)在代码中使用,给TextView设置字体:
如下:
TextView tv_content = findViewById(R.id.tv_content);
Typeface typeFace = Typeface.createFromAsset(getAssets(), "fonts/楷体.ttf");
tv_content.setTypeface(typeFace);
(1)在Android项目main目录下创建assets目录,用来存放字体,如图所示:
(2)在代码中使用,给TextView设置字体:
如下:
TextView tv_content = findViewById(R.id.tv_content);
Typeface typeFace = Typeface.createFromAsset(getAssets(), "fonts/楷体.ttf");
tv_content.setTypeface(typeFace);
本文标题:Android中引入字体
本文链接:https://www.haomeiwen.com/subject/mmduihtx.html
网友评论