Android - 如何为整个应用程序设置自定义字体

时间:2012-09-05 12:46:14

标签: android text fonts

  

可能重复:
  Is it possible to set font for entire Application?

我需要为整个应用设置自定义字体(.ttf格式),我该怎么办? 如果可能,从Manifest或XML将是最好的选择

5 个答案:

答案 0 :(得分:22)

2014年9月编辑:

对于仍然看到这个古老可怕答案的人来说,真正的,好的答案就在这里:

https://stackoverflow.com/a/16883281/1154026


<强> OLD:

你最好的选择是:

Customize Android Fonts

所以

    TextView text = (TextView) findViewById(R.id.custom_font);
    Typeface font = Typeface.createFromAsset(getAssets(), "yourfont.ttf");
    text.setTypeface(font);

将您的.ttf放在“assets”文件夹的根目录中。

答案 1 :(得分:11)

你可以这样做。 创建自定义textview并在任何地方使用该文本视图

public class MyTextView extends android.widget.TextView
{

    public MyTextView(Context context)
    {
        this(context, null);
    }

    public MyTextView(Context context, AttributeSet attrs)
    {
        this(context, attrs, 0);
    }

    public MyTextView(Context context, AttributeSet attrs, int defStyle)
    {
        super(context, attrs);
        if (this.isInEditMode()) return ;

        final TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.SomeStyle);
        final String customFont = a.getString(R.styleable.SomeStyle_font);

        //Build a custom typeface-cache here!
        this.setTypeface(
            Typeface.createFromAsset(context.getAssets(), customFont)
        );  
    }
}

将此添加到attrs.xml

<declare-styleable name="SomeStyle">
    <attr name="font" format="string" />
</declare-styleable>

然后在你的主题中,这样做: 这将确保所有文本视图都将使用MyTextView样式

<item name="android:textViewStyle">@style/MyTextView</item>

现在我们可以使用此样式的自定义属性定义自定义字体。

<style name="MyTextView" parent="@android:style/Widget.TextView">
    <item name="font">MyPathToFontInAssets.ttf</item>
</style>

因此,无论何时在项目中使用MyTextView,都会有自定义字体。

重要提示:字体不会被缓存,因此如果您打算使用此代码,则还应构建自定义字体缓存,以便可以为所有文本视图重复使用自定义字体。这将大大加快应用程序的速度!

更新:正如Amir所说,这与Custom fonts and XML layouts (Android)几乎相同,但我也使用Android样式自动在应用程序的所有文本视图中使用它。

答案 2 :(得分:10)

Cerate一个TextView子类并在任何地方使用它

    public class RobotoTextView extends TextView {

    public RobotoTextView(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
        init();
    }

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

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

    private void init() {
        if (!isInEditMode()) {
            Typeface tf = Typeface.createFromAsset(getContext().getAssets(), "fonts/Roboto-Light.ttf");
            setTypeface(tf);
        }
    }

}

使用

<com.test.RobotoTextView
        android:id="@+id/name"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        />

在java代码中,您可以将其强制转换为TextView

答案 3 :(得分:7)

TextView tv=(TextView)findViewById(R.id.custom);
    Typeface face=Typeface.createFromAsset(getAssets(),
                                          "fonts/Verdana.ttf");

    tv.setTypeface(face);

将字体文件放在/ res /

中的fonts文件夹中

喜欢我的答案,如果它有用......

答案 4 :(得分:0)

您可以按照建议here扩展TextView并在其上设置字体,然后在整个应用中使用它。