嗨,我有一个全局 Actions 类,我正在将其导入到我的活动中,我想要做的是将字体更改为该活动中的任何文本。
这是我的全局操作 public final static void setTypeFace(Context someContext){
Typeface face =Typeface.createFromAsset(getAssets(), "fonts/Verdana.ttf");
}
private static AssetManager getAssets() {
// TODO Auto-generated method stub
return null;
}
}
这是我试图在我的活动中实现它的地方
GlobalActions.setTypeFace(this);
super.setTypeface(GlobalActions.setTypeFace(face));
有谁知道如何做到这一点,或者甚至可能吗?