A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 四季列车 中级黑马   /  2014-3-13 21:50  /  663 人查看  /  1 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

安卓怎么使用自定义字体,安卓提供的字体满足不了需求:)

1 个回复

倒序浏览

非本人原创 不过我自己看了一下好懂

  1. package arui.blog.csdn.net;   







  2. import android.app.Activity;     
  3. import android.graphics.Typeface;     
  4. import android.view.View;     
  5. import android.view.ViewGroup;     
  6. import android.widget.Button;     
  7. import android.widget.EditText;     
  8. import android.widget.TextView;     
  9. public class FontManager {   

  10.     public static void changeFonts(ViewGroup root, Activity act) {     
  11.        Typeface tf = Typeface.createFromAsset(act.getAssets(),     
  12.               "fonts/xxx.ttf");     
  13.        for (int i = 0; i < root.getChildCount(); i++) {     
  14.            View v = root.getChildAt(i);     
  15.            if (v instanceof TextView) {     
  16.               ((TextView) v).setTypeface(tf);     
  17.            } else if (v instanceof Button) {     
  18.               ((Button) v).setTypeface(tf);     
  19.            } else if (v instanceof EditText) {     
  20.               ((EditText) v).setTypeface(tf);     
  21.            } else if (v instanceof ViewGroup) {     
  22.               changeFonts((ViewGroup) v, act);     
  23.            }   







  24.        }     
  25.     }     }
复制代码

评分

参与人数 1技术分 +1 收起 理由
zzkang0206 + 1

查看全部评分

回复 使用道具 举报 1 0
您需要登录后才可以回帖 登录 | 加入黑马