Androidでカスタム書体を使用する


111

作成しているAndroidアプリケーションにカスタムフォントを使用したい。
各オブジェクトの書体をコードから個別に変更できますが、何百もあります。

そう、

  • XMLからこれを行う方法はありますか?【カスタム書体の設定】
  • アプリケーション全体とすべてのコンポーネントがデフォルトの書体の代わりにカスタム書体を使用する必要があると言うために、コードから1つの場所でそれを行う方法はありますか?

stackoverflow.com/questions/5541058/…この投稿を見て、この問題に関する完全なコードをここに投稿しました
Manish Singla

メインアクティビティで静的変数を使用して、埋め込みフォントへの参照を保持できます。これにより、GCで取得されない永続的なフォントセットが1つ存在します。
Jacksonkr

ファクトリーメソッド。または、ビューを受け取り、すべてのフォントと書体の設定を設定するメソッド。
mtmurdock 2012年

新しいサポートライブラリ26では、XMLでフォントを使用できるようになりました。ここではどのようにあるXML内のフォント
ヴィニシウス・シルバ

回答:


80

XMLからこれを行う方法はありますか?

いいえ、ごめんなさい。組み込みの書体はXMLでのみ指定できます。

アプリケーション全体とすべてのコンポーネントがデフォルトの書体の代わりにカスタム書体を使用する必要があると言うために、コードから1つの場所でそれを行う方法はありますか?

私が知っていることではありません。

現在、これらにはさまざまなオプションがあります。

  • Android SDKのフォントリソースとバックポート(使用している場合) appcompat

  • appcompatすべてを使用するわけではありませんが、レイアウトリソースでのフォントの定義をサポートしないサードパーティライブラリ


4
@Codevalley:まあ、多くの点で、より良い答えは、カスタムフォントに煩わされないことです。それらは大きくなる傾向があり、ダウンロードを大きくし、アプリをダウンロードして使い続ける人の数を減らします。
CommonsWare

22
@CommonsWare:私は必ずしも同意しません。書体は、背景画像などと同様にUIスタイリングの不可欠な部分です。また、サイズは必ずしも大きいとは限りません。たとえば、私の場合のフォントは19.6KBです:)
Codevalley

2
@アミット:この問題に変更はありません。JavaのUIに書体を簡単に適用できるようにするためのコードスニペットはたくさんありますが、XMLからそれを行う方法はありません。
CommonsWare 2013年

1
@Amit:「しかし、それはカスタムフォント用に独自の.ttfまたは.otfファイルを作成する必要があることを意味しますか?」 - いいえ。既存のTTF / OTFフォントを使用できますが、すべてが機能するとは限りません。この質問の問題は、これらのフォントをアプリ全体に適用する方法ですが、これはまだ不可能です。それが私のコメントで言及していたことです。
CommonsWare 2013年

1
この受け入れられた答えは時代遅れであり、それを更新または削除するのは素晴らしいことです。
スカイケルシー

109

はい可能です。

テキストビューを拡張するカスタムビューを作成する必要があります。

attrs.xmlでのvaluesフォルダ:

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

}

4
これは機能しTextViewますが、のみです。TextView同じ機能が必要な場所から継承するすべてのウィジェットクラスにカスタムサブクラスが必要です。
CommonsWare

こんにちはマニッシュ、解決策をありがとう。私はこれを使用する際に問題に直面していますが。「パッケージcom.lht.androidの属性ttf_nameのリソース識別子が見つかりません」
Kshitij Aggarwal

17
これは機能しますが、ICSの前に、インスタンス化する各ビューのフォントにメモリを割り当てます:code.google.com/p/android/issues/detail?id=9904これを修正する方法は、グローバルにアクセス可能なすべてのインスタンス化されたフォントの静的ハッシュマップ:code.google.com/p/android/issues/detail?id
Ken Van Hoeylandt

なぜループが必要なのですか?、単一の呼び出しでは機能しないのですか?
Guillermo Tobar

1
@AlaksiejN。異なる書体を異なるTextViewに設定する必要がある場合...
Nick

49

レイアウト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を参照してください


これは私にとって最良の解決策です。
Igor K 14

2
デフォルトでは機能しません。モノスペースを使用し、code<style name = "AppTheme" parent = "AppBaseTheme"> <item name = "android:typeface"> monospace </ item> </ style>を設定codeすると、機能しますが、太字にはなりません。Applicationを拡張するクラスにこのコードを追加しました。それは正しい場所ですか?@Pちゃん
クリストファーリベラ

2
@ChristopherRiveraはい、それをアプリのApplicationクラスに追加し、onCreateで実行されることを確認します。grepcode.com/file/repository.grepcode.com/java/ext/を見てください。上記のサンプルコードのフィールドと同様に、モノスペースの追加フィールドをオーバーライドすることをお勧めします。
クリスチャンヘンデンによる2014年

2
さて、私はフィールドSERIFに変更し、それはうまくいきました:)
Abdullah

3
この回答はこの回答を参照しており、よりクリーンなアプローチを提供します。
adamdport 2015

36

私はマニッシュの答えを最速かつ最もターゲットを絞った方法として支持していますが、ビュー階層全体を再帰的に反復してすべての要素の書体を順番に更新する素朴なソリューションも見ました。このようなもの:

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()メソッドの両方で、ビューでこの関数を呼び出す必要があります。


かなり。当時、それはプロジェクト期間内にそれを行う唯一の方法でした。必要に応じて便利なショートカット(:
pospi 2013年

23

これを一元的に行うことができました。結果は次のとおりです。

ここに画像の説明を入力してください

私は以下を持っていますが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はシンプルで、https//code.google.com/p/android/issues/detail?id = 9904に記載されているICSの前の問題も解決します

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
これはより多くの票を得るべきです。動作し、デモ用のスクリーンショットがあります
ericn '19 / 03/14

10

ちょっと私はまた別のwidgedsのために私のアプリで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));

唯一の問題は、フォントを使用するすべてのウィジェットでこれが必要になることです。しかし、私はこれが最良の方法だと思います。


4

pospiの提案を使用し、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);

4

リサ・レイのブログでいい解決策を見つけました。新しいデータバインディングを使用すると、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"/>

データバインディングを使用した例を提案できますか?よろしくお願いします。
スリクリシュナ

3

それを行うには、もっと便利な方法があると思います。次のクラスは、アプリケーションのすべてのコンポーネントにカスタムの書体を設定します(クラスごとに設定します)。

/**
 * 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;
        }
    }

}

2

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レイアウトサポートを提供する方法について詳しく説明します。著者の実装のためのコードはここにあります


1

カスタムフォントを通常の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);

1

はい、デフォルトの書体を上書きすることで可能です。私はこのソリューションに従いましたが、1回の変更ですべてのTextViewと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がフォントと書体、およびそれらのデフォルト値を処理する方法を理解するのに役立ちました。


0

アプリ全体が変更されるかどうかはわかりませんが、次の方法では変更できなかった一部のコンポーネントを変更できました。

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

2
残念ながら、これはもう機能しません:java.lang.IllegalAccessException:フィールドは、java.lang.reflect.Field.set(Field.java:のjava.lang.reflect.Field.setField(Native Method)で「最終」とマークされています: 556)
BoD 2012年

0

私は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を使用して価値のあるものにするために、単なる書体以外のものも処理する必要があります。

'tag'プロパティの利点は、テーマとして使用する基本スタイルに設定できるため、すべてのビューに自動的に適用できることです。編集:これを行うと、Android 4.0.3でのインフレ中にクラッシュが発生します。スタイルを使用して、テキストビューに個別に適用することもできます。

コードで確認できることの1つ-一部のビューにはタグが明示的に設定されていない場合があります-奇妙なことに、それは文字列 'Αποκοπ-'です-これはギリシャ語で「カット」されているとGoogleの翻訳によると!なんてこったい...?


0

@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
        }
    }
}

0

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>

0

Android Oではカスタムフォントの使用が簡単になったようですが、基本的にはxmlを使用してこれを実現できます。参考のために、Androidの公式ドキュメントへのリンクを添付しました。うまくいけば、この解決策がまだこのソリューションを必要とする人々に役立つでしょう。Androidでカスタムフォントを操作する


0

Android 8.0(APIレベル26)以降、XMLでカスタムフォントを使用できることを知っておくと便利です。

簡単に言うと、次のようにできます。

  1. フォントをフォルダに入れますres/font

  2. ウィジェットの属性で使用するか

<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"/>

0

XMLファイルで直接「fontPath」属性を使用します。

style.xmlで使用

<item name = "fontPath"> fonts / ProximaNovaSemibold.ttf </ item>

直接レイアウトファイルで使用

fontPath = "fonts / ProximaNovaBold.ttf"

(注:プレフィックスでapp / android属性を使用する必要はありません)


-6

絶対に可能です。それを行う多くの方法。最速の方法は、try-catchメソッドで条件を作成することです。特定のフォントスタイルの条件を試し、エラーをキャッチして、他のフォントスタイルを定義します。


7
答えを証明するデモを提供できますか?
マーク
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.