Android:在SD卡中加载自定义字体

发布于 2024-11-15 05:02:43 字数 73 浏览 3 评论 0原文

是否可以在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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

撧情箌佬 2024-11-22 05:02:43

Typeface.createFromFile() 采用 String 路径或 File

Typeface typeface = Typeface.createFromFile(
    new File(Environment.getExternalStorageDirectory(), "font.ttf"));

Typeface.createFromFile() takes a String path or File.

Typeface typeface = Typeface.createFromFile(
    new File(Environment.getExternalStorageDirectory(), "font.ttf"));
野心澎湃 2024-11-22 05:02:43

我自己没有尝试过,但食谱指出您可以使用

Typeface.createFromFile(String path)

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

Typeface.createFromFile(String path)

http://androidcookbook.com/Recipe.seam;jsessionid=A2DD7A11C804B7C7646DCA883AA452FC?recipeId=1141

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文