gpt4 book ai didi

Android: 在应用程序中添加 helvetica neue 字体

转载 作者:塔克拉玛干 更新时间:2023-11-01 21:21:28 26 4
gpt4 key购买 nike

我正在制作一个应用程序,我必须在其中使用 helvetica neue 字体作为文本,但问题是我不知道如何在 android 中使用 helvetica 字体。我的问题是 android 是否支持 helvetica 字体,是的然后如何使用该字体,因为我无法在 windows-preference-general-appreance-color 和字体中找到 helvetica 字体。任何帮助将不胜感激。谢谢。

最佳答案

place the TTF file in the ./assets directory (create it if it doesn’t exist yet).

然后在你的 Activity 中,

   1. TextView txt = (TextView) findViewById(R.id.custom_font);  
2. Typeface font = Typeface.createFromAsset(getAssets(), "<font file name>.ttf");
3. txt.setTypeface(font);

更多信息请看:

Using Custom Fonts

Using Custom fonts on Android

How to use external fonts in Android

关于Android: 在应用程序中添加 helvetica neue 字体,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8147260/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com