web-dev-qa-db-ja.com

アプリケーション全体にカスタムフォントを設定することは可能ですか?

アプリケーション全体に特定のフォントを使用する必要があります。同じための.ttfファイルがあります。アプリケーションの起動時にこれをデフォルトのフォントとして設定してから、アプリケーションの他の場所で使用することは可能ですか?設定すると、レイアウトXMLでどのように使用できますか?

261
Samuh

はい、反射で。これは機能します( この回答に基づいて ):

(注:これはカスタムフォントのサポートがないための回避策です。この状況を変更したい場合は、スターを付けて Android issue here )に投票してください。 注:その問題に「私も」コメントを残さないでください。それを見た人は誰でもメールを受け取ります。それで「スター」だけにしてください。

import Java.lang.reflect.Field;
import Android.content.Context;
import Android.graphics.Typeface;

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();
        }
    }
}

次に、たとえば application クラスのいくつかのデフォルトフォントをオーバーロードする必要があります。

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");
    }
}

または、同じフォントファイルを使用している場合は、これを改善して1回だけ読み込むことができます。

ただし、"MONOSPACE"のように1つをオーバーライドし、そのフォント書体アプリケーション全体を強制するスタイルを設定する傾向があります。

<resources>
    <style name="AppBaseTheme" parent="Android:Theme.Light">
    </style>

    <!-- Application theme. -->
    <style name="AppTheme" parent="AppBaseTheme">
        <item name="Android:typeface">monospace</item>
    </style>
</resources>

API 21 Android 5.0

私はそれが機能せず、テーマAndroid:Theme.Material.Lightと互換性がないように見えるというコメントでレポートを調査しました。

そのテーマがあなたにとって重要でない場合は、古いテーマを使用してください、例えば:

<style name="AppTheme" parent="Android:Theme.Holo.Light.DarkActionBar">
    <item name="Android:typeface">monospace</item>
</style>
447
weston

Androidにはカスタムフォント用の優れたライブラリがあります: 書道

以下に使用方法のサンプルを示します。

gradleでは、次の行をアプリのbuild.gradleファイルに追加する必要があります。

dependencies {
    compile 'uk.co.chrisjenx:calligraphy:2.2.0'
}

そして、Applicationを拡張するクラスを作成し、次のコードを記述します。

public class App extends Application {
    @Override
    public void onCreate() {
        super.onCreate();

        CalligraphyConfig.initDefault(new CalligraphyConfig.Builder()
                        .setDefaultFontPath("your font path")
                        .setFontAttrId(R.attr.fontPath)
                        .build()
        );
    }
} 

アクティビティクラスでは、このメソッドをonCreateの前に配置します。

@Override
protected void attachBaseContext(Context newBase) {
    super.attachBaseContext(CalligraphyContextWrapper.wrap(newBase));
}

そして、マニフェストファイルは次のようになります。

<application
   .
   .
   .
   Android:name=".App">

アクティビティ全体がフォントに変更されます!シンプルできれいです!

64
Shia G

これはアプリケーション全体では機能しませんが、アクティビティでは機能し、他のアクティビティで再利用できます。他のビューをサポートするために、@ FR073Nのおかげでコードを更新しました。これらのクラスはすべてButtonsを拡張しているため、RadioGroupsTextViewなどの問題についてはわかりません。リフレクションを使用するためのブール条件を追加しました。これは非常にハック的で、パフォーマンスが著しく低下する可能性があるためです。

注:指摘したように、これは動的コンテンツでは機能しません!そのため、たとえばonCreateViewまたはgetViewメソッドを使用してこのメ​​ソッドを呼び出すことは可能ですが、追加の作業が必要です。

/**
 * Recursively sets a {@link Typeface} to all
 * {@link TextView}s in a {@link ViewGroup}.
 */
public static final void setAppFont(ViewGroup mContainer, Typeface mFont, boolean reflect)
{
    if (mContainer == null || mFont == null) return;

    final int mCount = mContainer.getChildCount();

    // Loop through all of the children.
    for (int i = 0; i < mCount; ++i)
    {
        final View mChild = mContainer.getChildAt(i);
        if (mChild instanceof TextView)
        {
            // Set the font if it is a TextView.
            ((TextView) mChild).setTypeface(mFont);
        }
        else if (mChild instanceof ViewGroup)
        {
            // Recursively attempt another ViewGroup.
            setAppFont((ViewGroup) mChild, mFont);
        }
        else if (reflect)
        {
            try {
                Method mSetTypeface = mChild.getClass().getMethod("setTypeface", Typeface.class);
                mSetTypeface.invoke(mChild, mFont); 
            } catch (Exception e) { /* Do something... */ }
        }
    }
}

それを使用するには、次のようにします。

final Typeface mFont = Typeface.createFromAsset(getAssets(),
"fonts/MyFont.ttf"); 
final ViewGroup mContainer = (ViewGroup) findViewById(
Android.R.id.content).getRootView();
HomeActivity.setAppFont(mContainer, mFont);

お役に立てば幸いです。

47
Tom

要約すれば:

Option#1:リフレクションを使用してフォントを適用する( westonRoger Huang の答えを組み合わせて):

import Java.lang.reflect.Field;
import Android.content.Context;
import Android.graphics.Typeface;

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) {
        if (isVersionGreaterOrEqualToLollipop()) {
            Map<String, Typeface> newMap = new HashMap<String, Typeface>();
            newMap.put("sans-serif", newTypeface);
            try {
                final Field staticField = Typeface.class.getDeclaredField("sSystemFontMap");
                staticField.setAccessible(true);
                staticField.set(null, newMap);
            } catch (NoSuchFieldException e) {
                e.printStackTrace();
            } catch (IllegalAccessException e) {
                e.printStackTrace();
            }
        } else {
            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();
            } 
        }
    }

} 

Applicationクラスでの使用:

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");
    } 
} 

そのフォント書体をアプリケーション全体に強制するスタイルを設定します( lovefish に基づいて):

ロリポップ前:

<resources>
    <style name="AppBaseTheme" parent="Theme.AppCompat.Light">
    </style>

   <!-- Application theme. -->
   <style name="AppTheme" parent="AppBaseTheme">
       <item name="Android:typeface">monospace</item>
   </style>
</resources>

ロリポップ(API 21):

<resources>
    <style name="AppBaseTheme" parent="Theme.AppCompat.Light">
    </style>

   <!-- Application theme. -->
   <style name="AppTheme" parent="AppBaseTheme">
       <item name="Android:textAppearance">@style/CustomTextAppearance</item>
   </style>

   <style name="CustomTextAppearance">
       <item name="Android:typeface">monospace</item>
   </style>
</resources>

Option2:フォントをカスタマイズする必要があるすべてのビューをサブクラス化します。 ListView、EditTextView、Buttonなど( Palani の答え):

public class CustomFontView extends TextView {

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

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

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

private void init() { 
    if (!isInEditMode()) {
        Typeface tf = Typeface.createFromAsset(getContext().getAssets(), "Futura.ttf");
        setTypeface(tf);
    } 
} 

オプション3:現在の画面のビュー階層を横断するビュークローラーを実装します。

バリエーション#1( Tom の答え):

public static final void setAppFont(ViewGroup mContainer, Typeface mFont, boolean reflect)
{ 
    if (mContainer == null || mFont == null) return;

    final int mCount = mContainer.getChildCount();

    // Loop through all of the children. 
    for (int i = 0; i < mCount; ++i)
    { 
        final View mChild = mContainer.getChildAt(i);
        if (mChild instanceof TextView)
        { 
            // Set the font if it is a TextView. 
            ((TextView) mChild).setTypeface(mFont);
        } 
        else if (mChild instanceof ViewGroup)
        { 
            // Recursively attempt another ViewGroup. 
            setAppFont((ViewGroup) mChild, mFont);
        } 
        else if (reflect)
        { 
            try { 
                Method mSetTypeface = mChild.getClass().getMethod("setTypeface", Typeface.class);
                mSetTypeface.invoke(mChild, mFont); 
            } catch (Exception e) { /* Do something... */ }
        } 
    } 
} 

使用法 :

final ViewGroup mContainer = (ViewGroup) findViewById(
Android.R.id.content).getRootView();
HomeActivity.setAppFont(mContainer, Typeface.createFromAsset(getAssets(),
"fonts/MyFont.ttf"));

バリエーション#2: https://coderwall.com/p/qxxmaa/Android-use-a-custom-font-everywhere

オプション#4:書道 と呼ばれるサードパーティのライブラリを使用します。

個人的には、多くの頭痛の種を省くため、Option#4をお勧めします。

32
Phileo99

API 21 Android 5.0の weston の答えを改善したいと思います。

原因

API 21では、ほとんどのテキストスタイルに次のようなfontFamily設定が含まれています。

<style name="TextAppearance.Material">
     <item name="fontFamily">@string/font_family_body_1_material</item>
</style>

デフォルトのRoboto Regularフォントが適用されます:

<string name="font_family_body_1_material">sans-serif</string>

Android:fontFamilyはAndroid:typeface属性( reference )よりも優先されるため、元の答えは等幅フォントの適用に失敗します。 Theme.Holo。*を使用することは、Android:fontFamily設定が内部にないため、有効な回避策です。

溶液

Android 5.0では、システムの書体を静的変数Typeface.sSystemFontMap( reference )に入れているため、同じリフレクション手法を使用して置き換えることができます。

protected static void replaceFont(String staticTypefaceFieldName,
        final Typeface newTypeface) {
    if (isVersionGreaterOrEqualToLollipop()) {
        Map<String, Typeface> newMap = new HashMap<String, Typeface>();
        newMap.put("sans-serif", newTypeface);
        try {
            final Field staticField = Typeface.class
                    .getDeclaredField("sSystemFontMap");
            staticField.setAccessible(true);
            staticField.set(null, newMap);
        } catch (NoSuchFieldException e) {
            e.printStackTrace();
        } catch (IllegalAccessException e) {
            e.printStackTrace();
        }
    } else {
        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();
        }
    }
}
28
Roger Huang

その非常にシンプルな... 1.ダウンロードして、アセットにウルカスタムフォントを配置します。次に、テキストビュー用に1つの別個のクラスを次のように記述します。ここではfuturaフォントを使用しました

public class CusFntTextView extends TextView {

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

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

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

private void init() {
    if (!isInEditMode()) {
        Typeface tf = Typeface.createFromAsset(getContext().getAssets(), "Futura.ttf");
        setTypeface(tf);
    }
}

}

そしてxmlで次を実行します。

 <com.packagename.CusFntTextView
        Android:id="@+id/tvtitle"
        Android:layout_width="wrap_content"
        Android:layout_height="wrap_content"         
        Android:text="Hi Android"           
        Android:textAppearance="?android:attr/textAppearanceLarge"
      />
15
Palani

TextViewやその他のコントロールを拡張することもお勧めしますが、コンストラクトにフォントを設定することを検討した方が良いでしょう。

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

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

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

protected void init() {
    setTypeface(Typeface.createFromAsset(getContext().getAssets(), AppConst.FONT));
}
9

素晴らしいソリューションは、ここにあります: https://coderwall.com/p/qxxmaa/Android-use-a-custom-font-everywhere

BaseActivityからアクティビティを拡張し、それらのメソッドを記述するだけです。また、ここで説明するようにフォントをより適切にキャッシュする必要があります: https://stackoverflow.com/a/16902532/291414


いくつかの調査の後、Samsung Galaxy Tab A(Android 5.0)で動作するコードを書きました。 https://stackoverflow.com/a/33236102/291414 と同様に、westonとRoger Huangのコードを使用しました。また、動作しないLenovo TAB 2 A10-70Lでもテストされています。違いを見るために、ここにフォント「Comic Sans」を挿入しました。

import Android.content.Context;
import Android.graphics.Typeface;
import Android.os.Build;
import Android.util.Log;
import Java.lang.reflect.Field;
import Java.util.HashMap;
import Java.util.Map;

public class FontsOverride {
    private static final int BOLD = 1;
    private static final int BOLD_ITALIC = 2;
    private static final int ITALIC = 3;
    private static final int LIGHT = 4;
    private static final int CONDENSED = 5;
    private static final int THIN = 6;
    private static final int MEDIUM = 7;
    private static final int REGULAR = 8;

    private Context context;

    public FontsOverride(Context context) {
        this.context = context;
    }

    public void loadFonts() {
        Map<String, Typeface> fontsMap = new HashMap<>();
        fontsMap.put("sans-serif", getTypeface("comic.ttf", REGULAR));
        fontsMap.put("sans-serif-bold", getTypeface("comic.ttf", BOLD));
        fontsMap.put("sans-serif-italic", getTypeface("comic.ttf", ITALIC));
        fontsMap.put("sans-serif-light", getTypeface("comic.ttf", LIGHT));
        fontsMap.put("sans-serif-condensed", getTypeface("comic.ttf", CONDENSED));
        fontsMap.put("sans-serif-thin", getTypeface("comic.ttf", THIN));
        fontsMap.put("sans-serif-medium", getTypeface("comic.ttf", MEDIUM));
        overrideFonts(fontsMap);
    }

    private void overrideFonts(Map<String, Typeface> typefaces) {
        if (Build.VERSION.SDK_INT == 21) {
            try {
                final Field field = Typeface.class.getDeclaredField("sSystemFontMap");
                field.setAccessible(true);
                Map<String, Typeface> oldFonts = (Map<String, Typeface>) field.get(null);
                if (oldFonts != null) {
                    oldFonts.putAll(typefaces);
                } else {
                    oldFonts = typefaces;
                }
                field.set(null, oldFonts);
                field.setAccessible(false);
            } catch (Exception e) {
                Log.e("TypefaceUtil", "Cannot set custom fonts");
            }
        } else {
            try {
                for (Map.Entry<String, Typeface> entry : typefaces.entrySet()) {
                    final Field staticField = Typeface.class.getDeclaredField(entry.getKey());
                    staticField.setAccessible(true);
                    staticField.set(null, entry.getValue());
                }
            } catch (NoSuchFieldException e) {
                e.printStackTrace();
            } catch (IllegalAccessException e) {
                e.printStackTrace();
            }
        }
    }

    private Typeface getTypeface(String fontFileName, int fontType) {
        final Typeface tf = Typeface.createFromAsset(context.getAssets(), "fonts/" + fontFileName);
        return Typeface.create(tf, fontType);
    }
}

アプリケーション全体でコードを実行するには、Applicationのようなクラスで次のように記述する必要があります。

    new FontsOverride(this).loadFonts();

「assets」内に「fonts」フォルダを作成し、そこに必要なフォントを配置します。ここに簡単な指示があります: https://stackoverflow.com/a/31697103/291414

Lenovoデバイスも誤って書体の値を取得します。ほとんどの場合、Typeface.NORMAL、時にはnullを返します。 TextViewが太字であっても(xmlファイルレイアウトで)。こちらをご覧ください: TextView isBoldは常にNORMALを返します 。この方法では、画面上のテキストは常に太字や斜体ではなく、通常のフォントで表示されます。だからプロデューサーのバグだと思う。

8
CoolMind

テーマ「」を含むAPI 21 Android Lollipopの westonRoger Huang の回答を改善したいTheme.AppCompat」。

Android 4.4より下

<resources>
    <style name="AppBaseTheme" parent="Theme.AppCompat.Light">
    </style>

   <!-- Application theme. -->
   <style name="AppTheme" parent="AppBaseTheme">
       <item name="Android:typeface">monospace</item>
   </style>
</resources>

Over(equal)API 5.0

<resources>
    <style name="AppBaseTheme" parent="Theme.AppCompat.Light">
    </style>

   <!-- Application theme. -->
   <style name="AppTheme" parent="AppBaseTheme">
       <item name="Android:textAppearance">@style/CustomTextAppearance</item>
   </style>

   <style name="CustomTextAppearance">
       <item name="Android:typeface">monospace</item>
   </style>
</resources>

そして、FontsOverrideutilファイルは、 weston の答えと同じです。私はこれらの電話でテストしました:

Nexus 5(Android 5.1プライマリAndroidシステム)

ZTE V5(Android 5.1 CM12.1)

XIAOMI note(Android 4.4 MIUI6)

HUAWEI C8850(Android 2.3.5 UNKNOWN)

8
lovefish

Android Oの時点で、これはXMLから直接定義できるようになりました 私のバグはクローズされました!

詳細はこちらを参照

TL; DR:

まず、プロジェクトにフォントを追加する必要があります

次に、次のようにフォントファミリを追加します。

<?xml version="1.0" encoding="utf-8"?>
<font-family xmlns:Android="http://schemas.Android.com/apk/res/Android">
    <font
        Android:fontStyle="normal"
        Android:fontWeight="400"
        Android:font="@font/lobster_regular" />
    <font
        Android:fontStyle="italic"
        Android:fontWeight="400"
        Android:font="@font/lobster_italic" />
</font-family>

最後に、レイアウトまたはスタイルでフォントを使用できます。

<TextView
        Android:layout_width="wrap_content"
        Android:layout_height="wrap_content"
        Android:fontFamily="@font/lobster"/>

<style name="customfontstyle" parent="@Android:style/TextAppearance.Small">
    <item name="Android:fontFamily">@font/lobster</item>
</style>

楽しい!

6
Sam

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>
6
Guy Micciche

ルートView.Firstを渡すことで、すべてのレイアウトから1つの関数呼び出しだけで、すべてのレイアウトにカスタムフォントを1つずつ設定できます。このようなフォントオブジェクトにアクセスするためのシングルトンアプローチを作成します。

 public class Font {
    private static Font font;
    public Typeface ROBO_LIGHT;

    private Font() {

    }

    public static Font getInstance(Context context) {
        if (font == null) {
            font = new Font();
            font.init(context);
        }
        return font;

    }

    public void init(Context context) {

        ROBO_LIGHT = Typeface.createFromAsset(context.getAssets(),
                "Roboto-Light.ttf");
    }

}

上記のクラスでさまざまなフォントを定義できます。次に、フォントを適用するフォントヘルパークラスを定義します。

   public class FontHelper {

    private static Font font;

    public static void applyFont(View parentView, Context context) {

        font = Font.getInstance(context);

        apply((ViewGroup)parentView);

    }

    private static void apply(ViewGroup parentView) {
        for (int i = 0; i < parentView.getChildCount(); i++) {

            View view = parentView.getChildAt(i);

//You can add any view element here on which you want to apply font 

            if (view instanceof EditText) {

                ((EditText) view).setTypeface(font.ROBO_LIGHT);

            }
            if (view instanceof TextView) {

                ((TextView) view).setTypeface(font.ROBO_LIGHT);

            }

            else if (view instanceof ViewGroup
                    && ((ViewGroup) view).getChildCount() > 0) {
                apply((ViewGroup) view);
            }

        }

    }

}

上記のコードでは、textViewとEditTextのみにフォントを適用していますが、他のビュー要素にも同様にフォントを適用できます。ルートビューグループのIDを上記のフォント適用メソッドに渡すだけです。たとえば、レイアウトは次のとおりです。

<RelativeLayout xmlns:Android="http://schemas.Android.com/apk/res/Android"
    xmlns:tools="http://schemas.Android.com/tools"
    Android:layout_width="match_parent"
    Android:layout_height="match_parent"
    Android:orientation="vertical"
    Android:id="@+id/mainParent"
    tools:context="${relativePackage}.${activityClass}" >

    <RelativeLayout
        Android:id="@+id/mainContainer"
        Android:layout_width="match_parent"
        Android:layout_height="wrap_content"
        Android:layout_above="@+id/homeFooter"
        Android:layout_below="@+id/edit" >

        <ImageView
            Android:id="@+id/PreviewImg"
            Android:layout_width="match_parent"
            Android:layout_height="match_parent"
            Android:src="@drawable/abc_list_longpressed_holo"
            Android:visibility="gone" />

        <RelativeLayout
            Android:id="@+id/visibilityLayer"
            Android:layout_width="match_parent"
            Android:layout_height="fill_parent" >

            <ImageView
                Android:id="@+id/UseCamera"
                Android:layout_width="wrap_content"
                Android:layout_height="wrap_content"
                Android:layout_alignParentTop="true"
                Android:layout_centerHorizontal="true"
                Android:src="@drawable/camera" />

            <TextView
                Android:id="@+id/tvOR"
                Android:layout_width="wrap_content"
                Android:layout_height="wrap_content"
                Android:layout_below="@+id/UseCamera"
                Android:layout_centerHorizontal="true"
                Android:layout_marginTop="20dp"
                Android:text="OR"
                Android:textSize="30dp" />

            <TextView
                Android:id="@+id/tvAND"
                Android:layout_width="wrap_content"
                Android:layout_height="wrap_content"
                Android:layout_centerHorizontal="true"
                Android:layout_marginTop="20dp"
                Android:text="OR"
                Android:textSize="30dp" />

</RelativeLayout>

上記のレイアウトでは、ルートの親IDが「メインの親」であるため、フォントを適用できます

public class MainActivity extends BaseFragmentActivity {

    private EditText etName;
    private EditText etPassword;
    private TextView tvTitle;
    public static boolean isHome = false;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

       Font font=Font.getInstance(getApplicationContext());
        FontHelper.applyFont(findViewById(R.id.mainParent),          getApplicationContext());
   }    
}

乾杯:)

4
Ajji

TextViewを拡張し、常にXMLレイアウト内またはTextViewが必要な場所でカスタムTextViewを使用することをお勧めします。カスタムTextViewで、setTypefaceをオーバーライドします

@Override
public void setTypeface(Typeface tf, int style) {
    //to handle bold, you could also handle italic or other styles here as well
    if (style == 1){
        tf = Typeface.createFromAsset(getContext().getApplicationContext().getAssets(), "MuseoSans700.otf");
    }else{
        tf = Typeface.createFromAsset(getContext().getApplicationContext().getAssets(), "MuseoSans500.otf");
    }
    super.setTypeface(tf, 0);
}
3
Sam Dozor

現在のビュー階層のビューに書体を割り当て、現在の書体プロパティに基づいてクラスを作成しました(太字、通常、必要に応じて他のスタイルを追加できます)。

public final class TypefaceAssigner {

public final Typeface DEFAULT;
public final Typeface DEFAULT_BOLD;

@Inject
public TypefaceAssigner(AssetManager assetManager) {
    DEFAULT = Typeface.createFromAsset(assetManager, "TradeGothicLTCom.ttf");
    DEFAULT_BOLD = Typeface.createFromAsset(assetManager, "TradeGothicLTCom-Bd2.ttf");
}

public void assignTypeface(View v) {
    if (v instanceof ViewGroup) {
        for (int i = 0; i < ((ViewGroup) v).getChildCount(); i++) {
            View view = ((ViewGroup) v).getChildAt(i);
            if (view instanceof ViewGroup) {
                setTypeface(view);
            } else {
                setTypeface(view);
            }
        }
    } else {
        setTypeface(v);
    }
}

private void setTypeface(View view) {
    if (view instanceof TextView) {
        TextView textView = (TextView) view;
        Typeface typeface = textView.getTypeface();
        if (typeface != null && typeface.isBold()) {
            textView.setTypeface(DEFAULT_BOLD);
        } else {
            textView.setTypeface(DEFAULT);
        }
    }
}
}

これで、onViewCreatedまたはonCreateViewのすべてのフラグメント、onCreateのすべてのアクティビティ、およびgetViewまたはnewViewのすべてのビューアダプタで次を呼び出すだけです。

typefaceAssigner.assignTypeface(view);
2
Ivan Kravchenko

トムのソリューションは優れた機能を発揮しますが、TextViewとEditTextでのみ機能します。

ほとんどのビュー(RadioGroup、TextView、Checkbox ...)をカバーしたい場合、それを行うメソッドを作成しました:

protected void changeChildrenFont(ViewGroup v, Typeface font){
    for(int i = 0; i < v.getChildCount(); i++){

        // For the ViewGroup, we'll have to use recursivity
        if(v.getChildAt(i) instanceof ViewGroup){
            changeChildrenFont((ViewGroup) v.getChildAt(i), font);
        }
        else{
            try {
                Object[] nullArgs = null;
                //Test wether setTypeface and getTypeface methods exists
                Method methodTypeFace = v.getChildAt(i).getClass().getMethod("setTypeface", new Class[] {Typeface.class, Integer.TYPE});
                //With getTypefaca we'll get back the style (Bold, Italic...) set in XML
                Method methodGetTypeFace = v.getChildAt(i).getClass().getMethod("getTypeface", new Class[] {});
                Typeface typeFace = ((Typeface)methodGetTypeFace.invoke(v.getChildAt(i), nullArgs));
                //Invoke the method and apply the new font with the defined style to the view if the method exists (textview,...)
                methodTypeFace.invoke(v.getChildAt(i), new Object[] {font, typeFace == null ? 0 : typeFace.getStyle()});
            }
            //Will catch the view with no such methods (listview...)
            catch (Exception e) {
                e.printStackTrace();
            }
        }
    }
}

このメソッドは、XMLで設定されたビューのスタイル(太字、斜体など)を取得し、存在する場合は適用します。

ListViewの場合、常にアダプターを作成し、getView内でフォントを設定します。

2
FR073N

最後に、Googleはこの問題の重大度を認識し(カスタムフォントをUIコンポーネントに適用)、彼らはそれに対するクリーンなソリューションを考案しました。

最初に、ライブラリ26+をサポートするように更新する必要があります(gradle {4.0 +}、Androidスタジオも更新する必要がある場合があります)。次に、fontという名前の新しいリソースフォルダーを作成できます。このフォルダーに、フォントリソース(.tff、...)を配置できます。次に、デフォルトのアプリをオーバーライドし、カスタムフォントを強制する必要があります:)

<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
    <item name="Android:fontFamily">@font/my_custom_font</item>
</style>

注:16より古いAPIを搭載したデバイスをサポートする場合は、Androidの代わりにアプリの名前空間を使用する必要があります!

1
Mr.Q

build.gradle 3.0.0以降のAPI 26では、resでフォントディレクトリを作成し、スタイルでこの行を使用できます

<item name="Android:fontFamily">@font/your_font</item>

変更のためにbuild.gradleはbuild.gradleの依存関係でこれを使用します

classpath 'com.Android.tools.build:gradle:3.0.0'

また、API 21 Android 5.0に対するwestonの回答を改善したいと思います。

DEFAULTフォントを使用すると、Samsung s5で同じ問題が発生しました。 (他のフォントでは正常に動作しています)

TextviewまたはButtonごとに、XMLファイルでtypeface(たとえば「sans」)を設定することで、なんとか機能させることができました。

<TextView
Android:layout_width="match_parent"
Android:layout_height="39dp"
Android:textColor="@color/abs__background_holo_light"
Android:textSize="12sp"
Android:gravity="bottom|center"
Android:typeface="sans" />

およびMyApplicationクラスで:

public class MyApplication extends Application {
    @Override
    public void onCreate() {
    TypefaceUtil.overrideFont(getApplicationContext(), "SANS_SERIF",
    "fonts/my_font.ttf");
    }
}

それが役に立てば幸い。

0
stevenwood

TextViewのデフォルトのフォントファミリを変更するには、アプリのテーマでtextViewStyleをオーバーライドします。

FontFamilyでカスタムフォントを使用するには、サポートライブラリにあるフォントリソースを使用します。

この機能はAndroid 26で追加されましたが、supportlibを介して古いバージョンにバックポートされました。

https://developer.Android.com/guide/topics/resources/font-resource.htmlhttps://developer.Android.com/guide/topics/ui/look- and-feel/fonts-in-xml.html#using-support-lib

0
Siyamed

Calligraphy はかなりうまく機能しますが、フォントファミリのさまざまなウェイト(太字、斜体など)をサポートしていないため、私には適していません。

そこで、 Fontain を試しました。これにより、カスタムビューを定義して、カスタムフォントファミリを適用できます。

fontainを使用するには、アプリモジュールbuild.gradleに次を追加する必要があります。

compile 'com.scopely:fontain:1.0.0'

次に、通常のTextViewを使用する代わりに、FontTextViewを使用する必要があります

大文字で太字のコンテンツを含むFontTextViewの例:

 <com.scopely.fontain.views.FontTextView
            Android:layout_width="match_parent"
            Android:layout_height="wrap_content"
            Android:background="@Android:color/black"
            Android:textColor="@Android:color/white"
            Android:textSize="11dp"
            Android:gravity="center"
            Android:id="@+id/tv1"
            app:font_family="myCustomFont"
            app:caps_mode="characters"
            app:font_weight="BOLD"/>
0
Cris

Android Oreoおよびそのサポートライブラリ(26.0.0)のリリース以降、これを簡単に行うことができます。別の質問の this answer を参照してください。

基本的に、最終的なスタイルは次のようになります。

<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
   <item name="fontFamily">@font/your_font</item> <!-- target Android sdk versions < 26 and > 14 -->
</style>
0

これ ソリューションは、状況によっては正しく機能しません。
それで拡張します:

FontsReplacer.Java

public class MyApplication extends Application {

    @Override
    public void onCreate() {
        FontsReplacer.replaceFonts(this);
        super.onCreate();
    }

}

https://Gist.github.com/orwir/6df839e3527647adc2d56bfadfaad805

0
Igor
package com.theeasylearn.demo.designdemo;
import Android.content.Context;
import Android.graphics.Typeface;
import Android.util.AttributeSet;
import Android.widget.TextView;

public class MyButton extends TextView {

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

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

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

    private void init() {

            Typeface tf =
                    Typeface.createFromAsset(
                            getContext().getAssets(), "angelina.TTF");
            setTypeface(tf);

    }

}