アプリで使用するフォントが1つありますが、小さな画面では少し漠然と見えるので、太字にしたいです。
私はこのコードを使用しました:
font = FontFactory.createFromAsset(fontTextureAtlas, this, "Noteworthy.ttc", 20f, true, Color.BLUE);
しかし、フォントを太字にするオプションはないので、私は使用しようとしましたFontFactory.create()
:
AssetManager mgr = AssetManager.class.newInstance();
font = FontFactory.create(fontTextureAtlas,
Typeface.create(Typeface.createFromAsset(mgr,"Noteworthy.ttc"),Typeface.BOLD),
20f,
true,
Color.BLUE);
しかし、私はこれを手に入れました:
ERROR/AndroidRuntime(2140): FATAL EXCEPTION: main
java.lang.RuntimeException: native typeface cannot be made
そして、このフォントを太字にする方法はもうわかりません。enyoneはそれを行う方法を知っていますか?