您好我有一个全局的Action类,我将其导入到我的活动中,我正在尝试将类型face更改为该活动中的任何文本。
继承我的全球行动 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;
}
}
和heres我试图在我的活动中实现它
GlobalActions.setTypeFace(this);
super.setTypeface(GlobalActions.setTypeFace(face));
有人知道如何做到这一点,或者甚至可能吗?