gpt4 book ai didi

Android - 如何在 xml 中设置 familiy 字体 "noto sans"?

转载 作者:数据小太阳 更新时间:2023-10-29 02:44:48 24 4
gpt4 key购买 nike

我正在开发一个针对以上 Lollipop (Android 5.0) 用户的 android 小部件应用程序。

出于某些原因,我必须在我的应用程序中使用一种名为“noto sans”( https://www.google.com/get/noto/#/ ) 的字体。

听说在Lollipop里面有,但是不知道在xml中怎么用。

有人知道吗?

最佳答案

不可以,您不能在布局文件 (XML) 中使用自定义字体。您必须以编程方式使用自定义字体,如下所示

String fontPath = "fonts/calibrib.ttf";

// Loading Font Face
Typeface tf = Typeface.createFromAsset(mContext.getAssets(), fontPath);

TextView txtView = new TextView(this);
txtView.setTypeface(tf);

将您的字体放在 Assets 文件夹中。这是上面代码的工作原理。

enter image description here

关于Android - 如何在 xml 中设置 familiy 字体 "noto sans"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29407526/

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