如何检索 Android 中可用/已安装字体的列表?

发布于 2024-09-15 19:20:00 字数 226 浏览 2 评论 0原文

在 Java 中我会做类似的事情:

java.awt.GraphicsEnvironment ge = 
                      java.awt.GraphicsEnvironment.getLocalGraphicsEnvironment();
Font[] fonts = ge.getAllFonts(); 

Android 是否有等效的?

In Java I would do something like:

java.awt.GraphicsEnvironment ge = 
                      java.awt.GraphicsEnvironment.getLocalGraphicsEnvironment();
Font[] fonts = ge.getAllFonts(); 

is there an Android equivalent?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(6

千里故人稀 2024-09-22 19:20:01

摘自 Mark Murphy 在 Android 开发者邮件列表上的回答:

http://developer.android.com/reference/android/graphics/字体.html

只有三种字体:普通
(Droid Sans)、衬线 (Droid Serif) 和
等宽字体(Droid Sans Mono)。

虽然可能有其他字体
埋藏在 WebKit 的某个地方,他们
似乎无法访问
WebKit 之外的开发人员。 :-(

唯一的其他字体是与应用程序捆绑在一起的任何 TrueType 字体。

编辑:Roboto 是 Android 4.0 中附带的一种新字体。您可以使用此库项目在 API 级别 4 之前的所有版本中使用它https://github.com/mcalliph/roboto-text-view

Taken from Mark Murphy's answer on the Android Developers mailing list:

http://developer.android.com/reference/android/graphics/Typeface.html

There are only three fonts: normal
(Droid Sans), serif (Droid Serif), and
monospace (Droid Sans Mono).

While there may be additional fonts
buried in WebKit somewhere, they
appear to be inaccessible to
developers outside of WebKit. :-(

The only other fonts are any TrueType ones you bundle with your application.

Edit: Roboto is a new font which came in with Android 4.0. You can use this library project to use it in all versions back to API level 4 https://github.com/mcalliph/roboto-text-view

爱*していゐ 2024-09-22 19:20:01

关于实际问题,这里有一种创建所有已安装可用字体的列表的方法:

String path = "/system/fonts";
File file = new File(path);
File ff[] = file.listFiles();

数组 ff[] 将包含所有字体文件。

Regarding the actual question, here is a way to create a list of all available fonts installed:

String path = "/system/fonts";
File file = new File(path);
File ff[] = file.listFiles();

Array ff[] will contain all the font files.

儭儭莪哋寶赑 2024-09-22 19:20:01

Android 中只有 3 种字体可用;正常 (Droid Sans)、衬线 (Droid Serif)、
和等宽字体 (Droid Sans Mono)。

应用程序可以包含自己的 truetype 字体,但无法安装它们以供其他应用程序使用。

关于字体的几个链接:

  • href="http://www.forbes.com /2008/09/25/font-android-g1-tech-wire-cx_ew_0926font.html" rel="noreferrer">http://www.forbes.com/2008/09/25/font-android-g1-tech -wire-cx_ew_0926font.html
  • http://www.droidfonts.com/droidfonts/about/

There are only 3 fonts available as part of android; normal (Droid Sans), serif (Droid Serif),
and monospace (Droid Sans Mono).

Apps can include their own truetype fonts but can't install them for use by other apps.

couple of links about the fonts:

孤君无依 2024-09-22 19:20:01

从 Android 29 开始,为您提供了 android.graphics.fonts.Font 的实际集合,有 SystemFonts.getAvailableFonts()

https://developer.android.com/reference/kotlin/android/graphics/fonts /SystemFonts?hl=en#getAvailableFonts()

From Android 29, giving you an actual collection of android.graphics.fonts.Font, there is SystemFonts.getAvailableFonts()

https://developer.android.com/reference/kotlin/android/graphics/fonts/SystemFonts?hl=en#getAvailableFonts()

生活了然无味 2024-09-22 19:20:01

这个答案不是一个编程解决方案,但实际的 ttf 字体似乎存储在 /system/fonts 目录中。使用 adb shell ls /system/fonts 列出它们,或使用 adb pull /system/fonts 将它们全部传输到连接的计算机(adb 将创建一个名为“字体”)。

This answer isn't a programmatic solution, but the actual ttf fonts seem to be stored in the /system/fonts directory. Use adb shell ls /system/fonts to list them, or adb pull /system/fonts to transfer all of them to the connected computer (adb will create a folder named "fonts").

也只是曾经 2024-09-22 19:20:01

Android 包含 3 种基本字体,但与 iOS 不同的是,Android 允许您使用几乎任何您想要的字体。您可以简单地将其嵌入到您的应用程序中,而不是像 Apple 那样仅限于预设的字体列表(Apple 不允许字体嵌入)。相当方便。

请注意,这是针对 Android 本身的,但网络浏览器(包括基本预装的 Android 网络浏览器)确实支持所有标准 HTML 字体。

Android includes 3 base fonts, but unlike iOS, allow you to use just about any font you'd like. You can simply embed it with your app, instead of being limited to a preset list of fonts like Apple does (Apple doesn't allow font embedding). Pretty convenient.

Note that this is for Android itself, but web browsers (including the basic pre-installed Android web browser) does support all the standard HTML fonts.

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