残念ながら、Androidのは、あなたのアプリケーション全体のフォントを変更するために探している、簡単迅速かつクリーンな方法を提供していませんされています。しかし、最近私はこの問題を調べ、コーディングせずにフォントを変更できるいくつかのツールを作成しました(xml、スタイル、およびテキストの外観でもすべてを行うことができます)。これらのソリューションは、他の回答と同様のソリューションに基づいていますが、はるかに柔軟性があります。 this blogですべてのことを読むことができ、githubプロジェクトhereを参照してください。
これらのツールの適用例を以下に示します。すべてのフォントファイルをassets/fonts/
に入れてください。次に、これらのフォントをxmlファイル(たとえばres/xml/fonts.xml
)で宣言し、このファイルをアプリの早めにTypefaceManager.initialize(this, R.xml.fonts);
(たとえば、アプリケーションクラスのonCreate)に読み込みます。あなたのxmlレイアウトでカスタムのTextView com.innovattic.font.FontTextView
にflFont属性を設定することにより、
<?xml version="1.0" encoding="utf-8"?>
<familyset>
<!-- Some Font. Can be referenced with 'someFont' or 'aspergit' -->
<family>
<nameset>
<name>aspergit</name>
<name>someFont</name>
</nameset>
<fileset>
<file>Aspergit.ttf</file>
<file>Aspergit Bold.ttf</file>
<file>Aspergit Italic.ttf</file>
<file>Aspergit Bold Italic.ttf</file>
</fileset>
</family>
<!-- Another Font. Can be referenced with 'anotherFont' or 'bodoni' -->
<family>
<nameset>
<name>bodoni</name>
<name>anotherFont</name>
</nameset>
<fileset>
<file>BodoniFLF-Roman.ttf</file>
<file>BodoniFLF-Bold.ttf</file>
</fileset>
</family>
</familyset>
今、あなたは(あなたが私は上記のツールを使用して)自分のスタイルやXMLでこれらのフォントを使用することができます。xmlファイルは次のようになります。以下は、あなただけのres/values/styles.xml
を編集することにより、あなたはあなたの全体のアプリですべてのテキストにフォントを適用することができますどのように見ることができます。
伴う
res/layout/layout.xml
で
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools">
<!-- Application theme -->
<!-- Use a different parent if you don't want Holo Light -->
<style name="AppTheme" parent="android:Theme.Holo.Light.DarkActionBar">
<item name="android:textViewStyle">@style/MyTextViewStyle</item>
</style>
<!-- Style to use for ALL text views (including FontTextView) -->
<!-- Use a different parent if you don't want Holo Light -->
<style name="MyTextViewStyle" parent="@android:style/Widget.Holo.Light.TextView">
<item name="android:textAppearance">@style/MyTextAppearance</item>
</style>
<!-- Text appearance to use for ALL text views (including FontTextView) -->
<!-- Use a different parent if you don't want Holo Light -->
<style name="MyTextAppearance" parent="@android:style/TextAppearance.Holo">
<!-- Alternatively, reference this font with the name "aspergit" -->
<!-- Note that only our own TextView's will use the font attribute -->
<item name="flFont">someFont</item>
<item name="android:textStyle">bold|italic</item>
</style>
<!-- Alternative style, maybe for some other widget -->
<style name="StylishFont">
<item name="flFont">anotherFont</item>
<item name="android:textStyle">normal</item>
</style>
</resources>
:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity" >
<!-- This text view is styled with the app theme -->
<com.innovattic.font.FontTextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="This uses my font in bold italic style" />
<!-- This text view is styled here and overrides the app theme -->
<com.innovattic.font.FontTextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:flFont="anotherFont"
android:textStyle="normal"
android:text="This uses another font in normal style" />
<!-- This text view is styled with a style and overrides the app theme -->
<com.innovattic.font.FontTextView
style="@style/StylishFont"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="This also uses another font in normal style" />
</LinearLayout>
は、テーマを適用することを忘れないでくださいAndroidマニフェストの
はい、彼は何を求めているのではありません – user1010160