码迷,mamicode.com
首页 > 移动开发 > 详细

Android中通过typeface设置字体

时间:2018-06-28 10:16:44      阅读:222      评论:0      收藏:0      [点我收藏+]

标签:根据   sans   .text   程序   四种   and   comment   ref   .net   

Android系统默认字体支持四种字体,分别为:

  1. noraml (普通字体,系统默认使用的字体)
  2. sans(非衬线字体)
  3. serif (衬线字体)
  4. monospace(等宽字体)

除此之外还可以使用其他字体文件(*.ttf)

关于后三种字体的区别可以看:
http://kb.cnblogs.com/page/192018/

一、使用系统自带的字体

1.在xml中修改字体

    <!--  使用默认的sans字体-->
    <TextView
        android:id="@+id/sans"
        android:text="Hello,World"
        android:textSize="20sp"
        android:typeface="sans" />

    <!--  使用默认的serifs字体-->
    <TextView
        android:id="@+id/serif"
        android:text="Hello,World"
        android:textSize="20sp"
        android:typeface="serif" />

    <!--  使用默认的monospace字体-->
    <TextView
        android:id="@+id/monospace"
        android:text="Hello,World"
        android:textSize="20sp"
        android:typeface="monospace" />

2.在java代码中修改字体

第一步: 获取TextView实例

  //获取textView实例
  TextView textView = findViewById(R.id.textview);

第二步:设置字体

   //设置serif字体
   textView.setTypeface(Typeface.SERIF);
   //设置sans字体
   textView.setTypeface(Typeface.SANS_SERIF);
   //设置monospace字体
   textView.setTypeface(Typeface.MONOSPACE);

二、在Android中可以引入其他字体

第一步:在assets目录下新建fonts目录,把ttf字体文件放到这,如图所示

技术分享图片

第二步:程序中调用

//实例化TextView
TextView textView = findViewById(R.id.textview);

//得到AssetManager
AssetManager mgr=getAssets();

//根据路径得到Typeface
Typeface tf=Typeface.createFromAsset(mgr, "fonts/pocknum.ttf");

//设置字体
textView.setTypeface(tf);

Android中通过typeface设置字体

标签:根据   sans   .text   程序   四种   and   comment   ref   .net   

原文地址:https://www.cnblogs.com/Free-Thinker/p/9237095.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!