我是靠谱客的博主 热心香烟,最近开发中收集的这篇文章主要介绍android app 如何设置自己喜欢的字体,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

http://blog.sina.com.cn/s/blog_8a86f4dd0101j18w.html


android系统提供了三种默认的字体样式:bold, normal , italic. 如果你的应用对字体有特殊要求怎么办呢?下面简单说一下具体的操作步骤:

方法一、通过继承TextView等weiget控件
1>在/asset/目录下存放字体文件:/asset/font/myFont.ttf

2>继承实现自己的TextView控件:

public class TitleTextView extends TextView {

    public TitleTextView(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
        // TODO Auto-generated constructor stub
        init(context);
    }

    public TitleTextView(Context context, AttributeSet attrs) {
        super(context, attrs);
        // TODO Auto-generated constructor stub
        init(context);
    }

    public TitleTextView(Context context) {
        super(context);
        // TODO Auto-generated constructor stub
        init(context);
    }
   
    private void init(Context context){
        Typeface tf = Typeface.createFromAsset(getContext().getAssets(), "fonts/myFont.ttf");
        this.setTypeface(tf);
    }  
}

3>在你的布局文件中使用即可。
               style="@style/PriceOzTextStyleGreen"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerInParent="true"
            android:gravity="center_vertical"
            android:text="@string/title_account_center"
            android:textSize="@dimen/text_size_large"
            android:textStyle="bold" />

最后

以上就是热心香烟为你收集整理的android app 如何设置自己喜欢的字体的全部内容,希望文章能够帮你解决android app 如何设置自己喜欢的字体所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(50)

评论列表共有 0 条评论

立即
投稿
返回
顶部