Android
カスタムフォント
サーチ…
あなたのアプリにカスタムフォントを置く
- (プロジェクトフォルダ)に移動し、
- 次に、app - > src - > mainを実行します。
- メインフォルダーに 'assets - > fonts'フォルダーを作成します。
- あなたの 'fontfile.ttf'をfontsフォルダに入れてください。
フォントの初期化
private Typeface myFont;
// A good practice might be to call this in onCreate() of a custom
// Application class and pass 'this' as Context. Your font will be ready to use
// as long as your app lives
public void initFont(Context context) {
myFont = Typeface.createFromAsset(context.getAssets(), "fonts/Roboto-Light.ttf");
}
TextViewでのカスタムフォントの使用
public void setFont(TextView textView) {
textView.setTypeface(myFont);
}
TextView上でフォントをxmlで適用する(必須Javaコード)
TextViewPlus.java:
public class TextViewPlus extends TextView {
private static final String TAG = "TextView";
public TextViewPlus(Context context) {
super(context);
}
public TextViewPlus(Context context, AttributeSet attrs) {
super(context, attrs);
setCustomFont(context, attrs);
}
public TextViewPlus(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
setCustomFont(context, attrs);
}
private void setCustomFont(Context ctx, AttributeSet attrs) {
TypedArray a = ctx.obtainStyledAttributes(attrs, R.styleable.TextViewPlus);
String customFont = a.getString(R.styleable.TextViewPlus_customFont);
setCustomFont(ctx, customFont);
a.recycle();
}
public boolean setCustomFont(Context ctx, String asset) {
Typeface typeface = null;
try {
typeface = Typeface.createFromAsset(ctx.getAssets(), asset);
} catch (Exception e) {
Log.e(TAG, "Unable to load typeface: "+e.getMessage());
return false;
}
setTypeface(typeface);
return true;
}
}
attrs.xml:(どこにres / valuesを配置するか)
<?xml version="1.0" encoding="utf-8"?>
<resources>
<declare-styleable name="TextViewPlus">
<attr name="customFont" format="string"/>
</declare-styleable>
</resources>
使い方:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:foo="http://schemas.android.com/apk/res-auto"
android:orientation="vertical" android:layout_width="fill_parent"
android:layout_height="fill_parent">
<com.mypackage.TextViewPlus
android:id="@+id/textViewPlus1"
android:layout_height="match_parent"
android:layout_width="match_parent"
android:text="@string/showingOffTheNewTypeface"
foo:customFont="my_font_name_regular.otf">
</com.mypackage.TextViewPlus>
</LinearLayout>
キャンバステキストのカスタムフォント
アセットからフォントをキャンバスに描画します。
Typeface typeface = Typeface.createFromAsset(getAssets(), "fonts/SomeFont.ttf");
Paint textPaint = new Paint();
textPaint.setTypeface(typeface);
canvas.drawText("Your text here", x, y, textPaint);
効率的な書体の読み込み
カスタムフォントを読み込むと、パフォーマンスが低下する可能性があります。私は非常にこのヘルパーを使用することをお勧めします。これは既に使用されているフォントをHashtableに保存/ロードします。
public class TypefaceUtils {
private static final Hashtable<String, Typeface> sTypeFaces = new Hashtable<>();
/**
* Get typeface by filename from assets main directory
*
* @param context
* @param fileName the name of the font file in the asset main directory
* @return
*/
public static Typeface getTypeFace(final Context context, final String fileName) {
Typeface tempTypeface = sTypeFaces.get(fileName);
if (tempTypeface == null) {
tempTypeface = Typeface.createFromAsset(context.getAssets(), fileName);
sTypeFaces.put(fileName, tempTypeface);
}
return tempTypeface;
}
}
使用法:
Typeface typeface = TypefaceUtils.getTypeface(context, "RobotoSlab-Bold.ttf");
setTypeface(typeface);
全体のアクティビティに対するカスタムフォント
public class ReplaceFont {
public static void changeDefaultFont(Context context, String oldFont, String assetsFont) {
Typeface typeface = Typeface.createFromAsset(context.getAssets(), assetsFont);
replaceFont(oldFont, typeface);
}
private static void replaceFont(String oldFont, Typeface typeface) {
try {
Field myField = Typeface.class.getDeclaredField(oldFont);
myField.setAccessible(true);
myField.set(null, typeface);
} catch (NoSuchFieldException e) {
e.printStackTrace();
} catch (IllegalAccessException e) {
e.printStackTrace();
}
}
次に、あなたの活動では、 onCreate()
メソッドで:
// Put your font to assets folder...
ReplaceFont.changeDefaultFont(getApplication(), "DEFAULT", "LinLibertine.ttf");
Android Oのフォントの操作
Android Oはフォントの操作方法を変更します。
Android Oでは、 フォントをXMLにするという新しい機能が導入されています 。この機能を使用すると、フォントをリソースとして使用できます。つまり、フォントをアセットとしてバンドルする必要はありません。フォントはRファイルでコンパイルされ、リソースとしてシステムで自動的に使用可能になります。
新しいフォントを追加するには、次の操作が必要です。
- 新しいリソースディレクトリ
res/font
作成します。 - このフォントフォルダにフォントファイルを追加します。たとえば、追加することによって
myfont.ttf
、あなたが経由でこのフォントを使用することができますR.font.myfont
。
次のXMLファイルをres/font
ディレクトリに追加して、独自のフォントファミリを作成することもできます。
<?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>
フォントファイルとフォントファミリファイルの両方を同じ方法で使用できます。
XMLファイルでは、次のように
android:fontFamily
属性を使用しandroid:fontFamily
。<TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:fontFamily="@font/myfont"/>
または次のように:
<style name="customfontstyle" parent="@android:style/TextAppearance.Small"> <item name="android:fontFamily">@font/myfont</item> </style>
コードでは、次のコード行を使用します。
Typeface typeface = getResources().getFont(R.font.myfont); textView.setTypeface(typeface);
Modified text is an extract of the original Stack Overflow Documentation
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow