自定义字体和 XML 布局(安卓)更新 2013年8月1日

2022-08-31 06:54:12

我正在尝试使用Android中的XML文件定义GUI布局。据我所知,没有办法指定您的小部件应该在XML文件中使用自定义字体(例如,您放置在资产/字体/中的字体/字体/),并且您只能使用系统安装的字体。

我知道,在Java代码中,我可以使用唯一的ID手动更改每个小部件的字体。或者,我可以迭代Java中的所有小部件以进行此更改,但这可能会非常慢。

我还有哪些其他选择?有没有更好的方法来制作具有自定义外观的小部件?我特别不想手动更改我添加的每个新小部件的字体。


答案 1

您可以扩展TextView以设置自定义字体,就像我在这里学到的那样。

TextViewPlus.java:

package com.example;

import android.content.Context;
import android.content.res.TypedArray;
import android.graphics.Typeface;
import android.util.AttributeSet;
import android.util.Log;
import android.widget.TextView;

public class TextViewPlus extends TextView {
    private static final String TAG = "TextView";

    public TextViewPlus(Context context) {
        super(context);
    }

    public TextViewPlus(Context context, AttributeSet attrs) {
        super(context, attrs);
        setCustomFont(context, attrs);
    }

    public TextViewPlus(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
        setCustomFont(context, attrs);
    }

    private void setCustomFont(Context ctx, AttributeSet attrs) {
        TypedArray a = ctx.obtainStyledAttributes(attrs, R.styleable.TextViewPlus);
        String customFont = a.getString(R.styleable.TextViewPlus_customFont);
        setCustomFont(ctx, customFont);
        a.recycle();
    }

    public boolean setCustomFont(Context ctx, String asset) {
        Typeface tf = null;
        try {
        tf = Typeface.createFromAsset(ctx.getAssets(), asset);  
        } catch (Exception e) {
            Log.e(TAG, "Could not get typeface: "+e.getMessage());
            return false;
        }

        setTypeface(tf);  
        return true;
    }

}

attrs.xml: (以 res/values 为单位)

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <declare-styleable name="TextViewPlus">
        <attr name="customFont" format="string"/>
    </declare-styleable>
</resources>

主要.xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:foo="http://schemas.android.com/apk/res/com.example"
    android:orientation="vertical" android:layout_width="fill_parent"
    android:layout_height="fill_parent">

    <com.example.TextViewPlus
        android:id="@+id/textViewPlus1"
        android:layout_height="match_parent"
        android:layout_width="match_parent"
        android:text="@string/showingOffTheNewTypeface"
        foo:customFont="saxmono.ttf">
    </com.example.TextViewPlus>
</LinearLayout>

您可以将“saxmono.ttf”放在assets文件夹中。

更新 2013年8月1日

这种方法存在严重的记忆问题。请参阅下面的chedabob的评论


答案 2

我迟到了3年参加派对:(但是,对于可能偶然发现这篇文章的人来说,这可能很有用。

我编写了一个库,该库缓存了字体,还允许您直接从 XML 指定自定义字体。您可以在此处找到该库。

下面是 XML 布局在使用时的外观。

<com.mobsandgeeks.ui.TypefaceTextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/hello_world"
    geekui:customTypeface="fonts/custom_font.ttf" />