如何检索 Android 中可用/已安装字体的列表?
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
摘自 Mark Murphy 在 Android 开发者邮件列表上的回答:
编辑: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:
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
关于实际问题,这里有一种创建所有已安装可用字体的列表的方法:
数组 ff[] 将包含所有字体文件。
Regarding the actual question, here is a way to create a list of all available fonts installed:
Array ff[] will contain all the font files.
Android 中只有 3 种字体可用;正常 (Droid Sans)、衬线 (Droid Serif)、
和等宽字体 (Droid Sans Mono)。
应用程序可以包含自己的 truetype 字体,但无法安装它们以供其他应用程序使用。
关于字体的几个链接:
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:
从 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 isSystemFonts.getAvailableFonts()
https://developer.android.com/reference/kotlin/android/graphics/fonts/SystemFonts?hl=en#getAvailableFonts()
这个答案不是一个编程解决方案,但实际的 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, oradb pull /system/fonts
to transfer all of them to the connected computer (adb will create a folder named "fonts").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.