1、Android系统默认支持三种字体,分别为:“sans”, “serif”, “monospace

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

复制代码 代码如下:
<?xml version="1.0" encoding="utf-8"?>
    Android:layout_width="fill_parent"
    Android:layout_height="fill_parent" >

   

                    Android:layout_marginRight="4px"
            Android:text="sans:"
            Android:textSize="20sp" >
       
       

                    Android:id="@+id/sans"
            Android:text="Hello,World"
            Android:textSize="20sp"
            Android:typeface="sans" >
       
   

   

                    Android:layout_marginRight="4px"
            Android:text="serif:"
            Android:textSize="20sp" >
       
       

                    Android:id="@+id/serif"
            Android:text="Hello,World"
            Android:textSize="20sp"
            Android:typeface="serif" >
       
   

   

                    Android:layout_marginRight="4px"
            Android:text="monospace:"
            Android:textSize="20sp" >
       
       

                    Android:id="@+id/monospace"
            Android:text="Hello,World"
            Android:textSize="20sp"
            Android:typeface="monospace" >
       
   
   

   

                    Android:layout_marginRight="4px"
            Android:text="custom:"
            Android:textSize="20sp" >
       

                    Android:id="@+id/custom"
            Android:text="Hello,World"
            Android:textSize="20sp" >
       
   



复制代码 代码如下:
// 得到TextView控件对象
TextView textView = (TextView) findViewById(R.id.custom);
// 将字体文件保存在assets/fonts/目录下,www.linuxidc.com创建Typeface对象
Typeface typeFace = Typeface.createFromAsset(getAssets(),"fonts/DroidSansThai.ttf");
// 应用字体
textView.setTypeface(typeFace);

如果想对整个界面的所有控件都应用自定义字体,可以:
复制代码 代码如下:
package arui.blog.csdn.net;  

import android.app.Activity;  
import android.graphics.Typeface;  
import android.view.View;  
import android.view.ViewGroup;  
import android.widget.Button;  
import android.widget.EditText;  
import android.widget.TextView;  

public class FontManager {  

    public static void changeFonts(ViewGroup root, Activity act) {  

       Typeface tf = Typeface.createFromAsset(act.getAssets(),  
              "fonts/xxx.ttf");  

       for (int i = 0; i < root.getChildCount(); i++) {  
           View v = root.getChildAt(i);  
           if (v instanceof TextView) {  
              ((TextView) v).setTypeface(tf);  
           } else if (v instanceof Button) {  
              ((Button) v).setTypeface(tf);  
           } else if (v instanceof EditText) {  
              ((EditText) v).setTypeface(tf);  
           } else if (v instanceof ViewGroup) {  
              changeFonts((ViewGroup) v, act);  
           }  
       }  

    }  

更多相关文章

  1. Android(安卓)Audio代码分析7 - stream type
  2. android透明activity
  3. android 标题栏不显示?
  4. Windows环境下Android(安卓)Studio系列3—简单设置
  5. YUV420P的格式以及转换为RGB565的代码(Android摄像头的输出一般为
  6. 深入浅出RxJava1(四:在Android中使用响应式编程)
  7. Android(安卓)数据库SQLiteDatabase的使用!!
  8. Android(安卓)Studio实现格式化XML代码顺序
  9. Android(安卓)手机设置CMWAP 接入点

随机推荐

  1. 深入浅出 - Android系统移植与平台开发(四
  2. android中activity的四种加载模式
  3. Android(安卓)匿名共享内存C++接口分析
  4. [转]Android的Handler总结
  5. Android之Intent(二)
  6. Android应用开发中的风格和主题(style,th
  7. Android应用程序的完全退出
  8. Android仿人人客户端(v5.7.1)——个人主页(
  9. Android提高篇之SQLite分页读取
  10. Android(安卓)上八款优秀的开源游戏引擎