我有一種字體,我必須在我的應用程序中使用,但在小屏幕上看起來有點隱約,所以我想讓它變得粗體。如何在AndEngine中使用斜體或粗體字體創建自定義字體?
我用這個代碼:
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知道該怎麼做嗎?
這種字體絕對具有明亮而粗體的字體。 – 2012-08-03 10:04:14
好吧,它絕對有它。 [論壇網站關於設置字體樣式爲粗體](https://groups.google.com/forum/?fromgroups#!topic/android-developers/z5fKtEf6wRY)和[實際使用的方法](http://developer.android .com/reference/android/graphics/Paint.html#setFakeBoldText%28boolean%29)。 – Akyl 2012-08-03 13:59:32