Android 应用程序安装字体

发布于 2024-10-09 07:11:22 字数 56 浏览 1 评论 0原文

我想在 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 技术交流群。

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

发布评论

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

评论(2

狼性发作 2024-10-16 07:11:22

在 Android 应用程序的 asset 文件夹中添加您要使用的字体文件。然后您可以加载字体并像这样使用它:

AssetManager assetManager = getContext().getAssets();
Typeface tf = Typeface.createFromAsset(assetManager,"GILB.TTF");
TextView logo = (TextView)findViewById(R.id.logo);
logo.setTypeface(tf);

在本例中,我使用了 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:

AssetManager assetManager = getContext().getAssets();
Typeface tf = Typeface.createFromAsset(assetManager,"GILB.TTF");
TextView logo = (TextView)findViewById(R.id.logo);
logo.setTypeface(tf);

In this case, I've used the true type font Gill Sans Bold.

戴着白色围巾的女孩 2024-10-16 07:11:22

您无法在设备上安装字体。

您可以将字体作为资产打包到您的应用程序中以供您的应用程序使用。

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.

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