当前位置:   article > 正文

Android 设置字体的三种方法(TypeFace)_android typeface

android typeface

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

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

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

一、使用系统自带的字体
1.在xml中修改字体

  1. <!--  不指明typeface -->
  2.             <TextView style="@style/TextStyle"
  3.                 android:text="Hello , world  中华人民共和国(没有设置属性)"/>
  4.  
  5.             <!--  使用默认的normal字体-->
  6.             <TextView
  7.                 style="@style/TextStyle"
  8.                 android:typeface="normal"
  9.                 android:text="Hello , world  中华人民共和国(xml设置normal)"/>
  10.  
  11.             <!--  使用默认的sans字体-->
  12.             <TextView
  13.                 style="@style/TextStyle"
  14.                 android:typeface="sans"
  15.                 android:text="Hello , world  中华人民共和国(xml设置sans)"/>
  16.  
  17.             <!--  使用默认的serifs字体-->
  18.             <TextView
  19.                 style="@style/TextStyle"
  20.                 android:typeface="serif"
  21.                 android:text="Hello , world  中华人民共和国(xml设置serif)"/>
  22.  
  23.             <!--  使用默认的monospace字体-->
  24.             <TextView
  25.                 style="@style/TextStyle"
  26.                 android:typeface="monospace"
  27.                 android:text="Hello , world  中华人民共和国(xml设置monospace)"/>


2.在Java代码中修改字体


   

  1.     vSansText = (TextView) findViewById(R.id.sans);
  2.     vSerifText = (TextView) findViewById(R.id.serif);
  3.     vMonospaceText = (TextView) findViewById(R.id.monospace);
  4.  
  5.     //设置字体样式
  6.     vSansText.setTypeface(Typeface.SANS_SERIF);
  7.     vSerifText.setTypeface(Typeface.SERIF);
  8.     vMonospaceText.setTypeface(Typeface.MONOSPACE);

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

   

  1.    //从asset 读取字体
  2.    //得到AssetManager
  3.   AssetManager mgr = getAssets();
  4.    //根据路径得到Typeface
  5.    Typeface tf = Typeface.createFromAsset(mgr, "fonts/HelveticaNeueLTPro-UltLt.otf");
  6.    //设置字体
  7.    vTTFText.setTypeface(tf);

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/2023面试高手/article/detail/185845
推荐阅读
相关标签
  

闽ICP备14008679号