Android 应用程序安装字体
我想在 android 中创建一个应用程序来安装印地语字体。有人可以指导我如何去做吗?是否可以 ?
I wanna create an application in android to install a Hindi Font. Can some one guide me how i can go about it ? is it possible ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 Android 应用程序的 asset 文件夹中添加您要使用的字体文件。然后您可以加载字体并像这样使用它:
在本例中,我使用了 true type 字体 Gill Sans Bold。
Add the font file you want to use in the assets folder of your Android application. Then you can load the font and use it like this:
In this case, I've used the true type font Gill Sans Bold.
您无法在设备上安装字体。
您可以将字体作为资产打包到您的应用程序中以供您的应用程序使用。
You cannot install a font on a device.
You can package a font as an asset with your application to be used by your application.