Android字体设置及Roboto字体使用方法
程序员文章站
2022-04-12 12:25:04
本文实例讲述了android字体设置及roboto字体使用方法。分享给大家供大家参考。具体分析如下:
一、自定义字体
1.android typeface使用ttf字体...
本文实例讲述了android字体设置及roboto字体使用方法。分享给大家供大家参考。具体分析如下:
一、自定义字体
1.android typeface使用ttf字体文件设置字体
我们可以在程序中放入ttf字体文件,在程序中使用typeface设置字体。
第一步,在assets目录下新建fonts目录,把ttf字体文件放到这。
第二步,程序中调用:
复制代码 代码如下:
assetmanager mgr=getassets();//得到assetmanager
typeface tf=typeface.createfromasset(mgr, "fonts/ttf.ttf");//根据路径得到typeface
tv=findviewbyid(r.id.textview);
tv.settypeface(tf);//设置字体
typeface tf=typeface.createfromasset(mgr, "fonts/ttf.ttf");//根据路径得到typeface
tv=findviewbyid(r.id.textview);
tv.settypeface(tf);//设置字体
2.在xml文件中使用android:textstyle=”bold” 可以将英文设置成粗体, 但是不能将中文设置成粗体,
将中文设置成粗体的方法是:
复制代码 代码如下:
textview tv = (textview)findviewbyid(r.id.textview01);
tv.getpaint().setfakeboldtext(true);//中文仿“粗体”--使用textpaint的仿“粗体”设置setfakeboldtext为true。
tv.getpaint().setfakeboldtext(true);//中文仿“粗体”--使用textpaint的仿“粗体”设置setfakeboldtext为true。
注意:部分字体中文无效,虽然不会报错,但是对中文无效。
二、使用roboto
自从android4.0后默认字体就使用了roboto,下面介绍一下使用方法:
复制代码 代码如下:
android:fontfamily="sans-serif" // roboto regular
android:fontfamily="sans-serif-light" // roboto light
android:fontfamily="sans-serif-condensed" // roboto condensed
android:fontfamily="sans-serif-thin" // roboto thin (android 4.2)
//in combination with
android:textstyle="normal|bold|italic"
android:fontfamily="sans-serif-light" // roboto light
android:fontfamily="sans-serif-condensed" // roboto condensed
android:fontfamily="sans-serif-thin" // roboto thin (android 4.2)
//in combination with
android:textstyle="normal|bold|italic"
可用的参数如下:
regular
italic
bold
bold-italic
light
light-italic
thin
thin-italic
condensed regular
condensed italic
condensed bold
condensed bold-italic
希望本文所述对大家的android程序设计有所帮助。
推荐阅读
-
Android修改DatePicker字体颜色及分割线颜色详细介绍
-
开发者福音:Google将Android默认字体Roboto完全开源了
-
浅析Android加载字体包及封装的方法
-
Android Studio常用设置(设置ide主题、安装插件、设置编码区字体、自定义sdk位置)
-
电脑字体类型及分辨率大小怎么设置?
-
Android:EditText在hint字体大小和text字体大小不一致时的设置方法
-
Flutter 透明状态栏及字体颜色的设置方法
-
Android Dialog 设置字体大小的具体方法
-
android 设置控件的颜色字体的方法
-
Android使用TypeFace设置TextView的文字字体