Android中通过typeface设置字体

时间:2023-02-01 20:31:02

Android系统默认支持三种字体,分别为:sans,serif,monospace",一般默认值是sans,除此之外还可以使用其他字体文件(*.ttf)。

英文字体有差异,貌似中文字体没有差异。


一、使用默认字体

 <!-- 使用默认的sans字体 -->

<TextView
android:id="@+id/sans"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="sans:Hello,World!你好"
android:textSize="20sp"
android:typeface="sans" />

<!-- 使用默认的serifs字体 -->

<TextView
android:id="@+id/serif"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="serifs:Hello,World!你好"
android:textSize="20sp"
android:typeface="serif" />

<!-- 使用默认的monospace字体 -->

<TextView
android:id="@+id/monospace"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="monospace:Hello,World!你好"
android:textSize="20sp"
android:typeface="monospace" />



效果图:

Android中通过typeface设置字体


二、使用其他字体

很多时候默认的三个字体没法满足我们的需求,就会使用其他字体。android支持ttf格式的字体。

1)将新字体的TTF文件copy到assets/fonts/目录下面,例如我们将“*.ttf”copy了过去。

2)我们需要将widget设置为该字体,比较遗憾的是,不能直接在XML文件中进行,需要编写源代码。

textView =(TextView) findViewById(R.id.custom);
//从assert中获取有资源,获得app的assert,采用getAserts(),通过给出在assert/下面的相对路径。
//在实际使用中,字体库可能存在于SD卡上,可以采用createFromFile()来替代createFromAsset。
Typeface typeface =Typeface.createFromAsset(getAssets(), "fonts/huawen.ttf");
String path =Environment.getExternalStorageDirectory().getAbsoluteFile() + File.separator + "xxx.ttf";
//Typeface typeface2 =Typeface.createFromFile(path);
textView.setTypeface(typeface);

TextView textView1 =(TextView) findViewById(R.id.custom1);
Typeface typeface3 =Typeface.createFromAsset(getAssets(), "fonts/timesi.ttf");
textView1.setTypeface(typeface3);

效果图:

Android中通过typeface设置字体

对于华文行楷字体,我们一开始使用的文件是中文名字,出现报错,后来我们将之改为全小写的英文名称就不会出错,所以在文件命名上需要注意。

我先后导入华文行楷的字体,大约4M,但是系统无法识别出该字体,没有显示,然后尝试使用英文字体timesi.ttf,正常。因此Android并非和所有的TTF字体都能兼容,尤其在中文特殊字体的支持会存在问题,对于不兼容的字体,Android不出报错,只是无法正常显示。一般而言我们都会使用系统缺省提供的字体。


对于使用其他字体,android提供了几个API,这里介绍下:

Typeface是字体类

这个类比较简单,这里列出它的成员方法(这些方法都是静态方法,返回Typeface对象,可以直接作为setTypeface的参数):

·static Typeface  create(Typeface family, int style)  //静态方法,参数一为字体类型这里是Typeface的静态定义,如宋体,参数二风格,如粗体,斜体

·static Typeface  create(String familyName, int style)  //静态方法,参数一为字体名的字符串,参数二为风格同上,这里我们推荐使用上面的方法。

·static Typeface  createFromAsset(AssetManager mgr, String path)  //静态方法,参数一为AssetManager对象,主要用于从APK的assets文件夹中取出字体,参数二为相对于Android工程下的assets文件夹中的外挂字体文件的路径。

·static Typeface  createFromFile(File path)  //静态方法,从文件系统构造一个字体,这里参数可以是sdcard中的某个字体文件

·static Typeface  createFromFile(String path)  //静态方法,从指定路径中构造字体

·static Typeface  defaultFromStyle(int style) //静态方法,返回默认的字体风格


本类的常量静态定义,首先为字体类型名称

 类型Typeface : DEFAULT  、DEFAULT_BOLD、 MONOSPACE、SANS_SERIF、 SERIF

字体风格名称

int BOLD  、 BOLD_ITALIC  、 ITALIC、NORMAL

这些变量都可以通过名称知道其意思


例子:

Typeface.create(Typeface.SANS_SERIF, Typeface.BOLD_ITALIC);
Typeface.create(Typeface.MONOSPACE, Typeface.ITALIC);
Typeface.create("sans", Typeface.ITALIC);
Typeface.createFromAsset(getAssets(), "fonts/huawen.ttf");
String path =Environment.getExternalStorageDirectory().getAbsoluteFile() + File.separator + "xxx.ttf";
Typeface.createFromFile(path);</span>


三、一些注意:

使用其他字库,都会消耗程序的空间,这是要非常注意的。而且这些字库有时并不能完全提供你所需要的文字。


当文字太多的时候,可以通过省略号省略后面的内容,省略号是使用“…”作为一个字体,可通过android:ellipsize属性进行设置。

如果我们需要使用省略功能,需要确保字体具有省略号。此外,为了保证长度的一直,Android会进行填充处理,除了将一个字符更换为省略符合外,后面的字符将更换为一个特殊的Unicode字符,‘ZERO WIDTH NO-BREAK SPACE’ (U+FEFF)。这个字符并占用任何可视的位置,但是保障了string具有同样的长度。不是所有的字体都支持这个特殊的字符,可能会引发一些乱码现象。

解决的方法也很简单,编辑字体文件,把U+FEFF这个字符的宽度设为0。