gpt4 book ai didi

Android 字体 createFromAsset

转载 作者:IT老高 更新时间:2023-10-28 21:45:23 25 4
gpt4 key购买 nike

我有一个在 Canvas 上绘制文本的自定义 View 。我想将 font 更改为存储在 assets 文件夹中的字体。

我正在使用 Android Studio 所以我创建了一个文件夹 src/main/assets 并将我的 ttf 文件放在那里。

Paint txt = new Paint()
Typeface font = Typeface.createFromAsset(getAssets(), "robotobold.ttf");
txt.setTypeface(font);

问题是 Android Studio 在我的自定义 View 中无法识别 getAssets(),但是,它在我的 Activity 中识别它。我尝试从 Activity 传递 Typeface 但是当我这样做时它不会改变 font

最佳答案

你可以使用你的ViewgetContext()方法来获取当前的Context,然后用它来获取 Assets :

Typeface font = Typeface.createFromAsset(getContext().getAssets(), "robotobold.ttf");

关于Android 字体 createFromAsset,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18436703/

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