-1
類
字體我有2類1號一個叫Font.java,它有下面的代碼的Android如何從
package com.example.font;
package com.example.font;
import android.content.Context;
import android.graphics.Typeface;
public final class Font {
static Context context;
// Font path
static String fontPath = "fonts/font.ttf";
// Loading Font Face
static Typeface tf = Typeface.createFromAsset(context.getAssets(), fontPath);
}
和第二類的活動,它具有以下
package com.example.font;
import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;
public class AndroidExternalFontsActivity extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
// text view label
TextView txtGhost = (TextView) findViewById(R.id.ghost);
// Applying font
txtGhost.setTypeface(Font.tf);
}
}
我想設置這在Font.java類到在活動類TextView的字體。
我想上面的代碼,但它不工作 我該怎麼辦呢?
謝謝。
THX的答案,但我怎麼可以設置後,該活動的字體? – user3707644 2015-03-08 23:07:01