gpt4 book ai didi

android - Font-awesome 显示一些奇怪的图标

转载 作者:行者123 更新时间:2023-11-29 01:04:57 24 4
gpt4 key购买 nike

我在 Android 应用程序中使用了很棒的字体。它没有显示真正的图标。相反,我收到了一些奇怪的文字。例如,我期待看到 arrow-left我得到的是这个(如图所示)。

enter image description here

android:text="@string/fa_arrow_left"

userTV.setTypeface(TypeFaces.get(this.getApplicationContext(), "fa"));

这是 TypeFaces 类。

public class TypeFaces {
private static final Hashtable<String, Typeface> cache = new Hashtable<String, Typeface>();

public static Typeface get(Context c, String name) {
synchronized (cache) {
if (!cache.containsKey(name)) {
Typeface t = Typeface.createFromAsset(
c.getAssets(),
String.format("fonts/%s.ttf", name)
);
cache.put(name, t);
}
return cache.get(name);
}
}
}

在 strings.xml 中 <string name="fa_arrow_left">&#xf060;</string>

fa.ttf 放在main > assets > fonts

https://github.com/FortAwesome/Font-Awesome/blob/master/fonts/fontawesome-webfont.ttf 下载字体

无论如何都是

最佳答案

啊!解决了。实际上,该角色的代码在我使用的版本中不可用。从 fontawesome 网站下载了最新的字体并且它有效。解决问题花了一整天。感谢所有在后台尝试帮助我的人。

关于android - Font-awesome 显示一些奇怪的图标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47941209/

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