我的 Android 应用程序在 2.1、2.2 和最高 3 版本中正常运行。由于自定义字体,该应用程序在 4.0 和 4.1 中崩溃。如何解决?
Typeface font2 = Typeface.createFromAsset(getAssets(), "fonts/Helvitica.ttf");
TextView customText1 = (TextView)findViewById(R.id.splashtext1);
customText1.setTypeface(font2);