作成しているAndroidアプリケーションにカスタムフォントを使用したい。
各オブジェクトの書体をコードから個別に変更できますが、数百個あります。
そう、
XMLからこれを行う方法はありますか?
いいえ、ごめんなさい。組み込みの書体は、XMLを介してのみ指定できます。
アプリケーション全体とすべてのコンポーネントがデフォルトのフォントではなくカスタムのフォントを使用する必要があると言うために、コードから1か所で行う方法はありますか?
私が知っていることではありません。
現在、これらにはさまざまなオプションがあります。
appcompat
を使用している場合、Android SDKのフォントリソースとバックポート
サードパーティライブラリappcompat
を使用していない人向け
はい、可能です。
テキストビューを拡張するカスタムビューを作成する必要があります。
values
フォルダーのattrs.xml
:
<resources>
<declare-styleable name="MyTextView">
<attr name="first_name" format="string"/>
<attr name="last_name" format="string"/>
<attr name="ttf_name" format="string"/>
</declare-styleable>
</resources>
main.xml
::
<LinearLayout xmlns:Android="http://schemas.Android.com/apk/res/Android"
xmlns:lht="http://schemas.Android.com/apk/res/com.lht"
Android:orientation="vertical"
Android:layout_width="fill_parent"
Android:layout_height="fill_parent"
>
<TextView Android:layout_width="fill_parent"
Android:layout_height="wrap_content"
Android:text="Hello"/>
<com.lht.ui.MyTextView
Android:id="@+id/MyTextView"
Android:layout_width="fill_parent"
Android:layout_height="wrap_content"
Android:text="Hello friends"
lht:ttf_name="ITCBLKAD.TTF"
/>
</LinearLayout>
MyTextView.Java
::
package com.lht.ui;
import Android.content.Context;
import Android.graphics.Typeface;
import Android.util.AttributeSet;
import Android.util.Log;
import Android.widget.TextView;
public class MyTextView extends TextView {
Context context;
String ttfName;
String TAG = getClass().getName();
public MyTextView(Context context, AttributeSet attrs) {
super(context, attrs);
this.context = context;
for (int i = 0; i < attrs.getAttributeCount(); i++) {
Log.i(TAG, attrs.getAttributeName(i));
/*
* Read value of custom attributes
*/
this.ttfName = attrs.getAttributeValue(
"http://schemas.Android.com/apk/res/com.lht", "ttf_name");
Log.i(TAG, "firstText " + firstText);
// Log.i(TAG, "lastText "+ lastText);
init();
}
}
private void init() {
Typeface font = Typeface.createFromAsset(context.getAssets(), ttfName);
setTypeface(font);
}
@Override
public void setTypeface(Typeface tf) {
// TODO Auto-generated method stub
super.setTypeface(tf);
}
}
これは、レイアウトXMLやアクティビティの変更を必要としない、より「強引な」方法で行いました。
Androidバージョン2.1から4.4でテスト済み。アプリケーションの起動時に、アプリケーションクラスでこれを実行します。
private void setDefaultFont() {
try {
final Typeface bold = Typeface.createFromAsset(getAssets(), DEFAULT_BOLD_FONT_FILENAME);
final Typeface italic = Typeface.createFromAsset(getAssets(), DEFAULT_ITALIC_FONT_FILENAME);
final Typeface boldItalic = Typeface.createFromAsset(getAssets(), DEFAULT_BOLD_ITALIC_FONT_FILENAME);
final Typeface regular = Typeface.createFromAsset(getAssets(),DEFAULT_NORMAL_FONT_FILENAME);
Field DEFAULT = Typeface.class.getDeclaredField("DEFAULT");
DEFAULT.setAccessible(true);
DEFAULT.set(null, regular);
Field DEFAULT_BOLD = Typeface.class.getDeclaredField("DEFAULT_BOLD");
DEFAULT_BOLD.setAccessible(true);
DEFAULT_BOLD.set(null, bold);
Field sDefaults = Typeface.class.getDeclaredField("sDefaults");
sDefaults.setAccessible(true);
sDefaults.set(null, new Typeface[]{
regular, bold, italic, boldItalic
});
} catch (NoSuchFieldException e) {
logFontError(e);
} catch (IllegalAccessException e) {
logFontError(e);
} catch (Throwable e) {
//cannot crash app if there is a failure with overriding the default font!
logFontError(e);
}
}
より完全な例については、 http://github.com/perchrh/FontOverrideExample を参照してください
マニッシュの答えを最速かつ最もターゲットを絞った方法として支持していますが、ビュー階層を再帰的に繰り返してすべての要素の書体を順番に更新する単純なソリューションも見ています。このようなもの:
public static void applyFonts(final View v, Typeface fontToSet)
{
try {
if (v instanceof ViewGroup) {
ViewGroup vg = (ViewGroup) v;
for (int i = 0; i < vg.getChildCount(); i++) {
View child = vg.getChildAt(i);
applyFonts(child, fontToSet);
}
} else if (v instanceof TextView) {
((TextView)v).setTypeface(fontToSet);
}
} catch (Exception e) {
e.printStackTrace();
// ignore
}
}
レイアウトを拡張した後とアクティビティのonContentChanged()
メソッドの両方で、ビューでこの関数を呼び出す必要があります。
これを集中的に行うことができました。結果は次のとおりです。
次のActivity
があり、カスタムフォントが必要な場合はそれから拡張します。
import Android.app.Activity;
import Android.content.Context;
import Android.os.Bundle;
import Android.util.AttributeSet;
import Android.view.LayoutInflater.Factory;
import Android.view.LayoutInflater;
import Android.view.View;
import Android.widget.TextView;
public class CustomFontActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
getLayoutInflater().setFactory(new Factory() {
@Override
public View onCreateView(String name, Context context,
AttributeSet attrs) {
View v = tryInflate(name, context, attrs);
if (v instanceof TextView) {
setTypeFace((TextView) v);
}
return v;
}
});
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
private View tryInflate(String name, Context context, AttributeSet attrs) {
LayoutInflater li = LayoutInflater.from(context);
View v = null;
try {
v = li.createView(name, null, attrs);
} catch (Exception e) {
try {
v = li.createView("Android.widget." + name, null, attrs);
} catch (Exception e1) {
}
}
return v;
}
private void setTypeFace(TextView tv) {
tv.setTypeface(FontUtils.getFonts(this, "MTCORSVA.TTF"));
}
}
しかし、サポートパッケージのアクティビティを使用している場合、たとえばFragmentActivity
その後、これを使用しますActivity
:
import Android.annotation.TargetApi;
import Android.content.Context;
import Android.os.Build;
import Android.os.Bundle;
import Android.support.v4.app.FragmentActivity;
import Android.util.AttributeSet;
import Android.view.LayoutInflater;
import Android.view.View;
import Android.widget.TextView;
public class CustomFontFragmentActivity extends FragmentActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
// we can't setLayout Factory as its already set by FragmentActivity so we
// use this approach
@Override
public View onCreateView(String name, Context context, AttributeSet attrs) {
View v = super.onCreateView(name, context, attrs);
if (v == null) {
v = tryInflate(name, context, attrs);
if (v instanceof TextView) {
setTypeFace((TextView) v);
}
}
return v;
}
@TargetApi(Build.VERSION_CODES.HONEYCOMB)
@Override
public View onCreateView(View parent, String name, Context context,
AttributeSet attrs) {
View v = super.onCreateView(parent, name, context, attrs);
if (v == null) {
v = tryInflate(name, context, attrs);
if (v instanceof TextView) {
setTypeFace((TextView) v);
}
}
return v;
}
private View tryInflate(String name, Context context, AttributeSet attrs) {
LayoutInflater li = LayoutInflater.from(context);
View v = null;
try {
v = li.createView(name, null, attrs);
} catch (Exception e) {
try {
v = li.createView("Android.widget." + name, null, attrs);
} catch (Exception e1) {
}
}
return v;
}
private void setTypeFace(TextView tv) {
tv.setTypeface(FontUtils.getFonts(this, "MTCORSVA.TTF"));
}
}
このコードはまだFragment
sでテストしていませんが、うまくいけばうまくいきます。
私のFontUtils
はシンプルで、ここで言及されているICS以前の問題も解決します https://code.google.com/p/Android/issues/detail?id=9904 :
import Java.util.HashMap;
import Java.util.Map;
import Android.content.Context;
import Android.graphics.Typeface;
public class FontUtils {
private static Map<String, Typeface> TYPEFACE = new HashMap<String, Typeface>();
public static Typeface getFonts(Context context, String name) {
Typeface typeface = TYPEFACE.get(name);
if (typeface == null) {
typeface = Typeface.createFromAsset(context.getAssets(), "fonts/"
+ name);
TYPEFACE.put(name, typeface);
}
return typeface;
}
}
また、アプリごとに2種類のフォントが必要です。私はこの方法を使用します:
私のアプリケーションクラスでは、静的メソッドを作成します:
public static Typeface getTypeface(Context context, String typeface) {
if (mFont == null) {
mFont = Typeface.createFromAsset(context.getAssets(), typeface);
}
return mFont;
}
String書体は、アセットフォルダー内のxyz.ttfを表します。 (私は定数クラスを作成しました)これでアプリのどこでもこれを使用できます:
mTextView = (TextView) findViewById(R.id.text_view);
mTextView.setTypeface(MyApplication.getTypeface(this, Constants.TYPEFACE_XY));
唯一の問題は、フォントを使用するすべてのウィジェットでこれが必要なことです!しかし、これが最善の方法だと思います。
Lisa Wrayのブログ で素敵な解決策を見つけました。新しいデータバインディングを使用すると、XMLファイルにフォントを設定できます。
@BindingAdapter({"bind:font"})
public static void setFont(TextView textView, String fontName){
textView.setTypeface(Typeface.createFromAsset(textView.getContext().getAssets(), "fonts/" + fontName));
}
XMLの場合:
<TextView
app:font="@{`Source-Sans-Pro-Regular.ttf`}"
Android:layout_width="wrap_content"
Android:layout_height="wrap_content"/>
pospi's提案を使用し、Richardのような 'tag'プロパティを操作して、カスタムフォントをロードし、タグに従ってビューに適用するカスタムクラスを作成しました。
基本的に、属性Android:fontFamilyでTypeFaceを設定する代わりに、Android:tag attritubeを使用して、定義済み列挙型の1つに設定します。
public class Fonts {
private AssetManager mngr;
public Fonts(Context context) {
mngr = context.getAssets();
}
private enum AssetTypefaces {
RobotoLight,
RobotoThin,
RobotoCondensedBold,
RobotoCondensedLight,
RobotoCondensedRegular
}
private Typeface getTypeface(AssetTypefaces font) {
Typeface tf = null;
switch (font) {
case RobotoLight:
tf = Typeface.createFromAsset(mngr,"fonts/Roboto-Light.ttf");
break;
case RobotoThin:
tf = Typeface.createFromAsset(mngr,"fonts/Roboto-Thin.ttf");
break;
case RobotoCondensedBold:
tf = Typeface.createFromAsset(mngr,"fonts/RobotoCondensed-Bold.ttf");
break;
case RobotoCondensedLight:
tf = Typeface.createFromAsset(mngr,"fonts/RobotoCondensed-Light.ttf");
break;
case RobotoCondensedRegular:
tf = Typeface.createFromAsset(mngr,"fonts/RobotoCondensed-Regular.ttf");
break;
default:
tf = Typeface.DEFAULT;
break;
}
return tf;
}
public void setupLayoutTypefaces(View v) {
try {
if (v instanceof ViewGroup) {
ViewGroup vg = (ViewGroup) v;
for (int i = 0; i < vg.getChildCount(); i++) {
View child = vg.getChildAt(i);
setupLayoutTypefaces(child);
}
} else if (v instanceof TextView) {
if (v.getTag().toString().equals(AssetTypefaces.RobotoLight.toString())){
((TextView)v).setTypeface(getTypeface(AssetTypefaces.RobotoLight));
}else if (v.getTag().toString().equals(AssetTypefaces.RobotoCondensedRegular.toString())) {
((TextView)v).setTypeface(getTypeface(AssetTypefaces.RobotoCondensedRegular));
}else if (v.getTag().toString().equals(AssetTypefaces.RobotoCondensedBold.toString())) {
((TextView)v).setTypeface(getTypeface(AssetTypefaces.RobotoCondensedBold));
}else if (v.getTag().toString().equals(AssetTypefaces.RobotoCondensedLight.toString())) {
((TextView)v).setTypeface(getTypeface(AssetTypefaces.RobotoCondensedLight));
}else if (v.getTag().toString().equals(AssetTypefaces.RobotoThin.toString())) {
((TextView)v).setTypeface(getTypeface(AssetTypefaces.RobotoThin));
}
}
} catch (Exception e) {
e.printStackTrace();
// ignore
}
}
}
アクティビティまたはフラグメントで呼び出すだけです
Fonts fonts = new Fonts(getActivity());
fonts.setupLayoutTypefaces(mainLayout);
もっと便利な方法があると思います。次のクラスは、アプリケーションのすべてのコンポーネントのカスタムタイプフェイスを設定します(クラスごとの設定を使用)。
/**
* Base Activity of our app hierarchy.
* @author SNI
*/
public class BaseActivity extends Activity {
private static final String FONT_LOG_CAT_TAG = "FONT";
private static final boolean ENABLE_FONT_LOGGING = false;
private Typeface helloTypeface;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
helloTypeface = Typeface.createFromAsset(getAssets(), "fonts/<your type face in assets/fonts folder>.ttf");
}
@Override
public View onCreateView(String name, Context context, AttributeSet attrs) {
View view = super.onCreateView(name, context, attrs);
return setCustomTypeFaceIfNeeded(name, attrs, view);
}
@Override
public View onCreateView(View parent, String name, Context context, AttributeSet attrs) {
View view = super.onCreateView(parent, name, context, attrs);
return setCustomTypeFaceIfNeeded(name, attrs, view);
}
protected View setCustomTypeFaceIfNeeded(String name, AttributeSet attrs, View view) {
View result = null;
if ("TextView".equals(name)) {
result = new TextView(this, attrs);
((TextView) result).setTypeface(helloTypeface);
}
if ("EditText".equals(name)) {
result = new EditText(this, attrs);
((EditText) result).setTypeface(helloTypeface);
}
if ("Button".equals(name)) {
result = new Button(this, attrs);
((Button) result).setTypeface(helloTypeface);
}
if (result == null) {
return view;
} else {
if (ENABLE_FONT_LOGGING) {
Log.v(FONT_LOG_CAT_TAG, "A type face was set on " + result.getId());
}
return result;
}
}
}
LayoutInflaterのデフォルトの実装は、xmlからのフォント書体の指定をサポートしていません。しかし、xmlタグからそのような属性を解析するLayoutInflaterのカスタムファクトリを提供することで、xmlで行われているのを見てきました。
基本構造はこれが必要です。
public class TypefaceInflaterFactory implements LayoutInflater.Factory {
@Override
public View onCreateView(String name, Context context, AttributeSet attrs) {
// CUSTOM CODE TO CREATE VIEW WITH TYPEFACE HERE
// RETURNING NULL HERE WILL TELL THE INFLATER TO USE THE
// DEFAULT MECHANISMS FOR INFLATING THE VIEW FROM THE XML
}
}
public class BaseActivity extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
LayoutInflater.from(this).setFactory(new TypefaceInflaterFactory());
}
}
この記事 は、これらのメカニズムの詳細な説明と、この方法で書体のxmlレイアウトサポートを提供しようとする著者の方法を提供します。著者の実装のコードは here にあります。
はい、デフォルトの書体をオーバーライドすることで可能です。 this ソリューションに従いましたが、1回の変更ですべてのTextViewsおよびActionBarテキストに対しても魅力のように機能しました。
public class MyApp extends Application {
@Override
public void onCreate() {
TypefaceUtil.overrideFont(getApplicationContext(), "SERIF", "fonts/Roboto-Regular.ttf"); // font from assets: "assets/fonts/Roboto-Regular.ttf
}
}
styles.xml
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/pantone</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
<item name="Android:windowTranslucentStatus" tools:targetApi="KitKat">true</item>
<item name="Android:windowDisablePreview">true</item>
<item name="Android:typeface">serif</item>
</style>
上記のリンクで言及したthemes.xmlの代わりに、デフォルトのアプリテーマタグのstyles.xmlでオーバーライドするデフォルトのフォントについて言及しました。上書きできるデフォルトの書体は、セリフ、サン、モノスペース、およびノーマルです。
TypefaceUtil.Java
public class TypefaceUtil {
/**
* Using reflection to override default typeface
* NOTICE: DO NOT FORGET TO SET TYPEFACE FOR APP THEME AS DEFAULT TYPEFACE WHICH WILL BE OVERRIDDEN
* @param context to work with assets
* @param defaultFontNameToOverride for example "monospace"
* @param customFontFileNameInAssets file name of the font from assets
*/
public static void overrideFont(Context context, String defaultFontNameToOverride, String customFontFileNameInAssets) {
try {
final Typeface customFontTypeface = Typeface.createFromAsset(context.getAssets(), customFontFileNameInAssets);
final Field defaultFontTypefaceField = Typeface.class.getDeclaredField(defaultFontNameToOverride);
defaultFontTypefaceField.setAccessible(true);
defaultFontTypefaceField.set(null, customFontTypeface);
} catch (Exception e) {
Log.e("Can not set custom font " + customFontFileNameInAssets + " instead of " + defaultFontNameToOverride);
}
}
}
当初、上書きされる書体が修正され、定義された値のセットであることを知りませんでしたが、最終的にはAndroidがフォントと書体とそのデフォルト値をどのように扱うかを理解するのに役立ちました。
カスタムフォントを通常のProgressDialog/AlertDialogに設定する:
font=Typeface.createFromAsset(getAssets(),"DroidSans.ttf");
ProgressDialog dialog = ProgressDialog.show(this, "titleText", "messageText", true);
((TextView)dialog.findViewById(Resources.getSystem().getIdentifier("message", "id", "Android"))).setTypeface(font);
((TextView)dialog.findViewById(Resources.getSystem().getIdentifier("alertTitle", "id", "Android"))).setTypeface(font);
Xamarin.Androidでの作業:
クラス:
public class FontsOverride
{
public static void SetDefaultFont(Context context, string staticTypefaceFieldName, string fontAssetName)
{
Typeface regular = Typeface.CreateFromAsset(context.Assets, fontAssetName);
ReplaceFont(staticTypefaceFieldName, regular);
}
protected static void ReplaceFont(string staticTypefaceFieldName, Typeface newTypeface)
{
try
{
Field staticField = ((Java.Lang.Object)(newTypeface)).Class.GetDeclaredField(staticTypefaceFieldName);
staticField.Accessible = true;
staticField.Set(null, newTypeface);
}
catch (Exception e)
{
Console.WriteLine(e.Message);
}
}
}
アプリケーションの実装:
namespace SomeAndroidApplication
{
[Application]
public class App : Application
{
public App()
{
}
public App(IntPtr handle, JniHandleOwnership transfer)
: base(handle, transfer)
{
}
public override void OnCreate()
{
base.OnCreate();
FontsOverride.SetDefaultFont(this, "MONOSPACE", "fonts/Roboto-Light.ttf");
}
}
}
スタイル:
<style name="Theme.Storehouse" parent="Theme.Sherlock">
<item name="Android:typeface">monospace</item>
</style>
Android 8.0(APIレベル26)以降では XMLでカスタムフォントを使用 が可能であることを知っておくと役立つ場合があります。
簡単に言えば、次の方法で実行できます。
フォントをフォルダーres/font
に入れます。
ウィジェットの属性で使用するか
<Button Android:fontFamily="@font/myfont"/>
またはres/values/styles.xml
に入れます
<style name="MyButton" parent="Android:Widget.Button">
<item name="Android:fontFamily">@font/myfont</item>
</style>
スタイルとして使用します
<Button style="@style/MyButton"/>
私はpospiの提案が好きです。ビューの「tag」プロパティ(XMLで指定できる-「Android:tag」)を使用して、XMLで実行できない追加のスタイリングを指定してください。 JSONが好きなので、JSON文字列を使用してキー/値セットを指定します。このクラスは作業を行います-アクティビティでStyle.setContentView(this, [resource id])
を呼び出すだけです。
public class Style {
/**
* Style a single view.
*/
public static void apply(View v) {
if (v.getTag() != null) {
try {
JSONObject json = new JSONObject((String)v.getTag());
if (json.has("typeface") && v instanceof TextView) {
((TextView)v).setTypeface(Typeface.createFromAsset(v.getContext().getAssets(),
json.getString("typeface")));
}
}
catch (JSONException e) {
// Some views have a tag without it being explicitly set!
}
}
}
/**
* Style the passed view hierarchy.
*/
public static View applyTree(View v) {
apply(v);
if (v instanceof ViewGroup) {
ViewGroup g = (ViewGroup)v;
for (int i = 0; i < g.getChildCount(); i++) {
applyTree(g.getChildAt(i));
}
}
return v;
}
/**
* Inflate, style, and set the content view for the passed activity.
*/
public static void setContentView(Activity activity, int resource) {
activity.setContentView(applyTree(activity.getLayoutInflater().inflate(resource, null)));
}
}
明らかに、JSONを使用する価値がある書体だけでなく、それ以上のものを処理したいと思うでしょう。
「タグ」プロパティの利点は、テーマとして使用するベーススタイルに設定できるため、すべてのビューに自動的に適用できることです。 編集:これを行うと、Android 4.0.3のインフレーション中にクラッシュします。それでもスタイルを使用して、個別にテキストビューに適用できます。
コードでわかることの1つ-一部のビューには、明示的に設定されていないタグがあります-奇妙なことに、文字列「Αποκοπή」です-これはギリシャ語で「カット」されています、Google翻訳によると!なんてこったい...?
@majinbooの答えは、パフォーマンスとメモリ管理のために修正されています。関連するアクティビティが必要な複数のフォントは、コンストラクター自体をパラメーターとして指定することにより、このFontクラスを使用できます。
@Override
public void onCreate(Bundle savedInstanceState)
{
Font font = new Font(this);
}
改訂されたFontsクラスは次のとおりです。
public class Fonts
{
private HashMap<AssetTypefaces, Typeface> hashMapFonts;
private enum AssetTypefaces
{
RobotoLight,
RobotoThin,
RobotoCondensedBold,
RobotoCondensedLight,
RobotoCondensedRegular
}
public Fonts(Context context)
{
AssetManager mngr = context.getAssets();
hashMapFonts = new HashMap<AssetTypefaces, Typeface>();
hashMapFonts.put(AssetTypefaces.RobotoLight, Typeface.createFromAsset(mngr, "fonts/Roboto-Light.ttf"));
hashMapFonts.put(AssetTypefaces.RobotoThin, Typeface.createFromAsset(mngr, "fonts/Roboto-Thin.ttf"));
hashMapFonts.put(AssetTypefaces.RobotoCondensedBold, Typeface.createFromAsset(mngr, "fonts/RobotoCondensed-Bold.ttf"));
hashMapFonts.put(AssetTypefaces.RobotoCondensedLight, Typeface.createFromAsset(mngr, "fonts/RobotoCondensed-Light.ttf"));
hashMapFonts.put(AssetTypefaces.RobotoCondensedRegular, Typeface.createFromAsset(mngr, "fonts/RobotoCondensed-Regular.ttf"));
}
private Typeface getTypeface(String fontName)
{
try
{
AssetTypefaces typeface = AssetTypefaces.valueOf(fontName);
return hashMapFonts.get(typeface);
}
catch (IllegalArgumentException e)
{
// e.printStackTrace();
return Typeface.DEFAULT;
}
}
public void setupLayoutTypefaces(View v)
{
try
{
if (v instanceof ViewGroup)
{
ViewGroup vg = (ViewGroup) v;
for (int i = 0; i < vg.getChildCount(); i++)
{
View child = vg.getChildAt(i);
setupLayoutTypefaces(child);
}
}
else if (v instanceof TextView)
{
((TextView) v).setTypeface(getTypeface(v.getTag().toString()));
}
}
catch (Exception e)
{
e.printStackTrace();
// ignore
}
}
}
アプリ全体が変更されるかどうかはわかりませんが、これを行うことで他の方法では変更できないコンポーネントを変更することができました。
Typeface tf = Typeface.createFromAsset(getAssets(), "fonts/Lucida Sans Unicode.ttf");
Typeface.class.getField("DEFAULT").setAccessible(true);
Typeface.class.getField("DEFAULT_BOLD").setAccessible(true);
Typeface.class.getField("DEFAULT").set(null, tf);
Typeface.class.getField("DEFAULT_BOLD").set(null, tf);
カスタムフォントの使用がAndroid Oで簡単になったように見えますが、基本的にxmlを使用してこれを実現できます。参考のためにAndroid公式ドキュメントへのリンクを添付しましたが、これがこのソリューションを必要とする人々に役立つことを願っています。 Androidでのカスタムフォントの使用