まずはassetsフォルダにフォント(.ttfか.otf)を置く。
その後android.graphics.Typefaceをインポートする。
1 |
import android.graphics.Typeface; |
onCreateでフォントを読み込む。
1 |
Typeface face = Typeface.createFromAsset(getAssets(), "JiyunoTsubasa.ttf"); |
フォントの利用をTextViewでこんな風に指定する。
1 |
textView.setTypeface(face); |
これで好きなフォントを開発したアプリで利用出来る。