gpt4 book ai didi

android - 如何在接口(interface)类中初始化 TypeFace

转载 作者:太空狗 更新时间:2023-10-29 16:18:18 29 4
gpt4 key购买 nike

所以我有这个界面:

public interface Utils{
static final Typeface FONT = Typeface.createFromAsset(getAssets(), "fonts/font.ttf");;
}

我在 getAssets() 中遇到错误,它说 The method getAssets() is undefined for the type Utils 为什么会这样?请帮忙谢谢:)

最佳答案

您的 Utils 类没有名为 getAssets() 的方法。我假设您想使用 Android Context 类中的那个。这意味着您需要有一个 Context 对象来调用 getAssets()。如果没有关于您的确切应用设计的更多详细信息,我无法为您提供进一步的帮助。

一个可能的解决方案是创建一个 Activity 子类,您的所有其他 Activity 都将扩展该子类。您还需要遵守 Activity 生命周期:

public abstract FontActivity extends Activity {

private Typeface font;

@Override
public onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
font = Typeface.createFromAsset(getAssets(), "fonts/font.ttf");
}

}

现在扩展 FontActivity 而不是 Activity

关于android - 如何在接口(interface)类中初始化 TypeFace,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21821225/

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