64

我正在尝试按照此处的指南在 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,它已在其中一个博客中成功使用。我还在使用另一种自定义字体,但采用 TrueType 格式的食肉动物.ttf。

相关代码:

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 中有什么重大变化阻止我这样做吗?

4

9 回答 9

48

Android 不支持 OpenType (OTF),仅支持 TrueType (TTF),因此您的Molot.otf字体可能无法使用。我写了你在开场白中链接到的两篇博客文章(一个是另一个的盗版副本),他们不使用Molot.otf.

(顺便说一句,我在一定程度上修复了那篇文章的格式——AndroidGuys 不断更换 WordPress 主机,所以我的旧文章在格式方面严重损坏)。

编辑:如评论中所述,Android现在支持 OTF

于 2010-06-11T15:26:07.573 回答
27

我也遇到了同样的错误,我有解决方案。

Typeface tf = Typeface.createFromAsset(getAssets(), "fonts/Molot.otf")

您必须将 文件夹放入 Eclipse 中fonts/Molot.otfassets/fonts

之后就可以运行了。

如果您无法成功运行它,您可以通过

于 2011-05-10T04:52:08.100 回答
10

不幸的是,字体不能出错不是很具体,它可能是很多事情出错的结果。检查两件事很重要:

  • 第一个也是最重要的:文件找到了!
  • 该字体在您的设备中有效。

最好的方法是将字体文件更改为已知的有效字体文件。
如果失败,那么这是第一个问题。
如果没有,那就是第二个,所以你将不得不处理FontForge或寻找另一种字体。

于 2011-10-26T16:40:42.933 回答
9

检查字体的名称和扩展名。它区分大小写,可能全部大写。例如。

Typeface tf = Typeface.createFromAsset(getAssets(), "fonts/MOLOT.OTF")
于 2012-10-12T11:15:21.560 回答
6

供参考。我的崩溃原因是Eclipse引起的某种原因。我所做的只是清理项目并再次运行,然后它就可以工作了。

首先,我在我的测试项目中尝试了自定义字体,我用它来尝试一些新功能。它在第一次工作。但它在我正在做的项目上不起​​作用,直到我按照上面的方法做。

所以尽可能多地尝试方法。

于 2012-01-12T09:26:28.523 回答
6

Android 确实支持字体的 OTF 文件,如果您遇到此问题,请确保您为 font.put 字体设置正确的路径到 assets 文件夹内的文件夹 fonts 并创建如下字体:

Typeface typeface = Typeface.createFromAsset(getAssets(), "font/StencilStd.otf");
TextView text = (TextView) findViewById(R.id.textView);
text.setTypeface(typeface);
于 2018-07-18T07:58:57.477 回答
4

您应该使用二进制模式中的“Fontlab”软件编辑字体。

于 2013-07-28T11:10:52.467 回答
4

@deng his answer worked for me":

check font's name and extension. it is case sensitive & probably all caps. eg.

Typeface tf = Typeface.createFromAsset(getAssets(), "fonts/MOLOT.OTF")
于 2013-07-30T09:37:54.957 回答
1

Android 确实支持字体的 OTF 文件,如果您遇到此问题,请确保为字体设置正确的路径,例如,如果您有文件 fontname.otf,请将其放在 assets 中的文件夹 fonts文件夹并创建如下字体:

Typeface typeface = Typeface.createFromAsset(getAssets(), "fonts/fontname.otf");

(路径参数不应以“/”开头)并且文件名不应包含特殊字符或“-”并且应为小写

于 2014-08-23T23:45:52.167 回答