在android里面使用自定义字体

		Typeface lcdFont = Typeface.createFromAsset(getAssets(),
				"fonts/lcd2mono.ttf");
		txtMineCount.setTypeface(lcdFont);
		txtTimer.setTypeface(lcdFont);

在assets底下新建目录fonts,然后将字体文件拷进即可
txtMineCount和txtTimer都是textview型的控件

你可能感兴趣的:(java,android)