2

在我之前的项目中,我使用Calligraphy库为整个应用程序设置字体。但它需要将字体文件存储在资产中,这使得 APK 尺寸更大。现在我想知道是否可以将可下载字体设置为整个应用程序的默认字体。

我只能为一个 TextView 设置可下载的字体。

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_margin="@dimen/text_margin"
    android:fontFamily="@font/lato"
    android:text="@string/large_text" />

是的,我知道我可以创建MyTextView类并以编程方式设置可下载字体。但我认为这不是一个好主意,因为文本可以在 EditText、Spinner 项、Toast 中的任何位置。

所以我的问题是如何将整个应用程序的可下载字体设置为默认字体?

4

3 回答 3

1

要在应用程序的任何位置应用 XML 中的字体集,请在您的主题中创建一个主题themes.xml并在其中设置android:fontFamily

<style name="ApplicationTheme">
    <item name="android:fontFamily">@font/lato</item>
</style>

在清单中将此主题设置为您的应用程序

<application
    android:name=".App"
    android:icon="@mipmap/ic_launcher"
    android:theme="@style/ApplicationTheme">
...
</application>

并且只要您不使用从系统样式继承的样式,例如

<style name="CustomButton" parent="Base.Widget.AppCompat.Button.Borderless">

您的字体将应用于所有 TextViews、EditTexts、Spinners、Toasts 等。

于 2017-12-29T16:01:06.500 回答
0
public final class FontsOverride {

    public static void setDefaultFont(Context context,
            String staticTypefaceFieldName, String fontAssetName) {
        final Typeface regular = Typeface.createFromAsset(context.getAssets(),
                fontAssetName);
        replaceFont(staticTypefaceFieldName, regular);
    }

    protected static void replaceFont(String staticTypefaceFieldName,
            final Typeface newTypeface) {
        try {
            final Field staticField = Typeface.class
                    .getDeclaredField(staticTypefaceFieldName);
            staticField.setAccessible(true);
            staticField.set(null, newTypeface);
        } catch (NoSuchFieldException e) {
            e.printStackTrace();
        } catch (IllegalAccessException e) {
            e.printStackTrace();
        }
    }
}


public final class Application extends android.app.Application {
    @Override
    public void onCreate() {
        super.onCreate();
        FontsOverride.setDefaultFont(this, "DEFAULT", "MyFontAsset.ttf");
        FontsOverride.setDefaultFont(this, "MONOSPACE", "MyFontAsset2.ttf");
        FontsOverride.setDefaultFont(this, "SERIF", "MyFontAsset3.ttf");
        FontsOverride.setDefaultFont(this, "SANS_SERIF", "MyFontAsset4.ttf");
    }
}
于 2017-12-29T16:06:11.217 回答
0

帮助自定义字体和文本大小的库

这个库的目标是让您的应用程序以一种易于配置的方式支持具有自己的样式(例如正常、粗体、斜体)的多个 FontFamilies(例如 lato、roboto 等)。

于 2017-12-07T17:23:15.973 回答