加载字体时出现“RuntimeException:无法生成本机字体”
我试图在Android上使用TextView的自定义字体,按照这里和这里的指南。 使用相同的字体,相同的代码,相同的一切,我在adb logcat中得到这个:
W/dalvikvm( 317): threadid=1: thread exiting with uncaught exception (group=0x4001d800)
E/AndroidRuntime( 317): FATAL EXCEPTION: main
E/AndroidRuntime( 317): java.lang.RuntimeException: Unable to start activity ComponentInfo{org.evilx.quacklock/org.evilx.quacklock.MainActivity}: java.lang.RuntimeException: native typeface cannot be made
E/AndroidRuntime( 317): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2663)
E/AndroidRuntime( 317): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2679)
E/AndroidRuntime( 317): at android.app.ActivityThread.access$2300(ActivityThread.java:125)
E/AndroidRuntime( 317): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:2033)
E/AndroidRuntime( 317): at android.os.Handler.dispatchMessage(Handler.java:99)
E/AndroidRuntime( 317): at android.os.Looper.loop(Looper.java:123)
E/AndroidRuntime( 317): at android.app.ActivityThread.main(ActivityThread.java:4627)
E/AndroidRuntime( 317): at java.lang.reflect.Method.invokeNative(Native Method)
E/AndroidRuntime( 317): at java.lang.reflect.Method.invoke(Method.java:521)
E/AndroidRuntime( 317): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:868)
E/AndroidRuntime( 317): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:626)
E/AndroidRuntime( 317): at dalvik.system.NativeStart.main(Native Method)
E/AndroidRuntime( 317): Caused by: java.lang.RuntimeException: native typeface cannot be made
E/AndroidRuntime( 317): at android.graphics.Typeface.<init>(Typeface.java:147)
E/AndroidRuntime( 317): at android.graphics.Typeface.createFromAsset(Typeface.java:121)
E/AndroidRuntime( 317): at org.evilx.quacklock.MainActivity.onCreate(MainActivity.java:24)
E/AndroidRuntime( 317): at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1047)
E/AndroidRuntime( 317): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2627)
E/AndroidRuntime( 317): ... 11 more
W/ActivityManager( 59): Force finishing activity org.evilx.quacklock/.MainActivity
W/ActivityManager( 59): Activity pause timeout for HistoryRecord{43e80368 org.evilx.quacklock/.MainActivity}
D/dalvikvm( 247): GC_EXPLICIT freed 711 objects / 53160 bytes in 20922ms
嗯...好吧。 我正在使用字体Molot.otf,该字体已成功用于其中一个博客。 我还使用了另一种自定义字体predator.ttf,但采用TrueType格式
相关代码:
public class MainActivity extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle icicle) {
super.onCreate(icicle);
Typeface tf = Typeface.createFromAsset(getAssets(), "fonts/Molot.otf");
TextView tv = (TextView) findViewById(R.id.CustomFontText);
tv.setTypeface(tf);
}
}
和
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent"> <TextView android:id="@+id/CustomFontText" android:layout_width="wrap_content" android:layout_height="wrap_content" android:textSize="30sp" android:text="Here is some text."> </TextView> </LinearLayout>
这会导致什么? 它为博客中的人员工作,所以为什么不是我? 在API中发生了一些重大变化,阻止了我这样做?
Android不支持OpenType(OTF),仅支持TrueType(TTF),因此您的Molot.otf
字体可能不起作用。 我在你的开头句子中写了你链接到的两篇博客文章(其中一篇是另一篇的盗版),并且他们不使用Molot.otf
。
(顺便说一句,我有些修复了这篇文章的格式--AndroidGuys不断改变WordPress主机,所以我的旧帖子在格式化方面已经非常糟糕)。
编辑 :正如评论指出,Android为现在支持OTF。
我也得到了同样的错误,我有解决方案。
Typeface tf = Typeface.createFromAsset(getAssets(), "fonts/Molot.otf")
您必须将fonts/Molot.otf
放入Eclipse中的assets/fonts
文件夹中。
之后你可以运行它。
如果你不能运行成功,你可以通过发送proplem
不幸的是, 字体不能做错误不是很明确,而且可能是许多事情出错的结果。 检查两件事情很重要:
最好的方法是更改字体文件以获取已知的有效字体文件。
如果失败了,那么这是第一个问题。
如果没有,这是第二个,所以你将不得不处理FontForge
或寻找另一种字体。
上一篇: "RuntimeException: native typeface cannot be made" when loading font