web-dev-qa-db-ja.com

androidカスタムフォントをペイントに設定

ペイントにテキストを描きたい。カスタムフォント((Helvetica)および太字で描画する方法は?システムフォントを使用し、アセットから作成するのは好ましくありません。ありがとう。

82
Buda Gavril

「カスタムフォント」とは、アセットとして提供するフォントを意味する場合、次のコードが機能するはずです。

Typeface plain = Typeface.createFromAsset(assetManager, pathToFont); 
Typeface bold = Typeface.create(plain, Typeface.DEFAULT_BOLD)
Paint paint = new Paint();
Paint.setTypeface(bold);
canvas.drawText("Sample text in bold",0,0,Paint);
155
Tony the Pony

Paintクラスにこれを使用します。

 Paint paint = new Paint();
   Paint.setTypeface(Typeface.create("Arial",Typeface.ITALIC));
14
Pritam

既に使用中のフォントがあり、その太字バージョンを使用する場合は、これを行うことができます。

currentPainter = new Paint(Paint.ANTI_ALIAS_FLAG);
currentPainter.setColor(Color.WHITE);
currentPainter.setTextSize(Utils.sp2px(getResources(), 14)); // set font size
Typeface currentTypeFace =   currentPainter.getTypeface();
Typeface bold = Typeface.create(currentTypeFace, Typeface.BOLD);
currentPainter.setTypeface(bold);

私は上記の答えを使用しましたが、この変更は私にとって必要でした-私はそれを言及すると思っただけです

7
Neil D'Souza

フォントにXMLのAndroidの新しいフォントを使用している場合、ペイントに使用する書体を取得するには、次を使用できます。

val customTypeface = ResourcesCompat.getFont(context, R.font.myfont)

または、min Android API> = 26

val customTypeface = resources.getFont(R.font.myfont)

次に、ペイントオブジェクトに適用するには:

mTextPaint.typeface = customTypeface

詳細については、チェックアウト https://developer.Android.com/guide/topics/ui/look-and-feel/fonts-in-xml#fonts-in-code

4

リソースのフォントを使用する場合(Kotlin):

val textPaint = TextPaint()
textPaint.typeface = resources.getFont(R.font.font_name)

これは質問とは関係ないかもしれませんが、これは私が探していたものです-おそらく誰かもそれを必要とするでしょう。

1
Paweł Rubin