Android:在SD卡中加载自定义字体
是否可以在android中使用存储在SD卡中的自定义字体?到目前为止我所看到的表明字体文件必须位于资产文件夹中。请告诉我我错了。
Is it possible to use a custom font in android which is stored in the SD card? What I've seen so far indicates the font file must be in the assets folder. Please tell me I'm wrong.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Typeface.createFromFile()
采用String
路径或File
。Typeface.createFromFile()
takes aString
path orFile
.我自己没有尝试过,但食谱指出您可以使用
http://androidcookbook.com/Recipe.seam;jsessionid=A2DD7A11C804B7C7646DCA883AA452FC?recipeId=1141
I have not tried it myself but the recipe states you might be able to do it by using the
http://androidcookbook.com/Recipe.seam;jsessionid=A2DD7A11C804B7C7646DCA883AA452FC?recipeId=1141