// 自定义字体
custom = new TextView(this);//xx.ttf located at assets/fonts/typeface = Typeface.createFromAsset(getAssets(),"fonts/xx.ttf");custom.setTypeface(typeface);
.自定义字体
1.android Typeface使用TTF字体文件设置字体我们可以在程序中放入ttf字体文件,在程序中使用Typeface设置字体。
第一步,在assets目录下新建fonts目录,把ttf字体文件放到这。第二步,程序中调用:AssetManager mgr=getAssets();//得到AssetManagerTypeface tf=Typeface.createFromAsset(mgr, "fonts/ttf.ttf");//根据路径得到Typefacetv.setTypeface(tf);//设置字体
2.在xml文件中使用android:textStyle=”bold” 可以将英文设置成粗体, 但是不能将中文设置成粗体,
将中文设置成粗体的方法是: TextView tv = (TextView)findViewById(R.id.TextView01); tv.getPaint().setFakeBoldText(true);//中文仿“粗体”--使用TextPaint的仿“粗体”设置setFakeBoldText为true。参考:
http://hi.baidu.com/spare_h/blog/item/490fa14d24325ce0d62afc34.htmlhttp://hi.baidu.com/spare_h/blog/item/a8a20818cfde325c42a9ad49.htmlxml 中 android:fontFamily 的用法
From android 4.1 / 4.2, the following Roboto font families are available:
android:fontFamily="sans-serif" // roboto regular
android:fontFamily="sans-serif-light" // roboto lightandroid:fontFamily="sans-serif-condensed" // roboto condensedandroid:fontFamily="sans-serif-thin" // roboto thin (android 4.2)in combination withandroid:textStyle="normal|bold|italic"
this 12 variants are possible:Regular
ItalicBoldBold-italicLightLight-italicThinThin-italicCondensed regularCondensed italicCondensed boldCondensed bold-italic android:fontFamily 与 android:typeface 相同Android内建的字体有:normalsansserifmonospace详见:TextView | Android Developers
http://developer.android.com/reference/android/widget/TextView.html#attr_android%3atypefaceHow to change fontFamily of TextView in Android - Stack Overflow
http://stackoverflow.com/questions/12128331/how-to-change-fontfamily-of-textview-in-androidAndroid System Fonts(/system/fonts):
AndroidClock.ttfAndroidClock_Highlight.ttfAndroidClock_Solid.ttfAndroidEmoji.ttfClockopia.ttfDroidNaskh-Regular.ttfDroidNaskhUI-Regular.ttfDroidSans-Bold.ttfDroidSans.ttfDroidSansArmenian.ttfDroidSansEthiopic-Regular.ttfDroidSansFallback.ttfDroidSansGeorgian.ttfDroidSansHebrew-Bold.ttfDroidSansHebrew-Regular.ttfDroidSansMono.ttfDroidSerif-Bold.ttfDroidSerif-BoldItalic.ttfDroidSerif-Italic.ttfDroidSerif-Regular.ttfMTLmr3m.ttfRoboto-Bold.ttfRoboto-BoldItalic.ttfRoboto-Italic.ttfRoboto-Light.ttfRoboto-LightItalic.ttfRoboto-Regular.ttfRoboto-Thin.ttfRoboto-ThinItalic.ttfRobotoCondensed-Bold.ttfRobotoCondensed-BoldItalic.ttfRobotoCondensed-Italic.ttfRobotoCondensed-Regular.ttf