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

Android 使用自定义字体

时间:2014-12-12 16:35:01      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:android   style   blog   http   ar   color   os   使用   sp   

整个项目要使用第三方字体首先将字体文件放到assets文件夹下

因为整个项目要用第三方字体这里我重写了 TextView Button EditText 三个控件 

以TextView 为例代码如下  其它控件一样换下继承

bubuko.com,布布扣
public class CustomTextView extends TextView { 

    public CustomTextView(Context context) {
        super(context);
        init(context);
    }

    public CustomTextView(Context context, AttributeSet attrs) {
        super(context, attrs);
        init(context);
    }

    public CustomTextView(Context context, AttributeSet attrs, int defSyle) {
        super(context, attrs, defSyle);
        init(context);
    }

    /***
     * 设置字体
     * 
     * @return
     */
    public void init(Context context) { 
        setTypeface(FontCustom.setFont(context));
        
    }
}
View Code
bubuko.com,布布扣
public class FontCustom {
    
    static String fongUrl = "fonts/fzltxh_gbk.ttf";
    static Typeface tf;

    /***
     * 设置字体
     * 
     * @return
     */
    public static Typeface setFont(Context context) {
        if(tf==null){
            tf = Typeface.createFromAsset(context.getAssets(), fongUrl);
        }
        return tf;
    }
}
View Code

使用方法

bubuko.com,布布扣
<CustomTextView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"  
                android:text="我是自定义字体"
                android:textColor="@color/login_font_hit"
                android:textSize="14.0sp" />
View Code

这样就实现了项目字体统一风格

Android 使用自定义字体

标签:android   style   blog   http   ar   color   os   使用   sp   

原文地址:http://www.cnblogs.com/freexiaoyu/p/4159875.html

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