0

こんにちは、アクティビティにインポートするグローバル 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));

誰かがこれを行う方法を知っていますか、それが可能かどうかさえ知っていますか?

4

0 に答える 0