Android更改应用程序的字体类型?

时间:2011-10-22 10:25:08

标签: android

我的应用程序中需要字体 Helvetica ,适用于所有活动。有什么来源吗?

我在资源文件夹中有Helvetica.ttf文件,但是当我尝试

    TextView text2 =(TextView)findViewById(R.id.textView2);
    Typeface font = Typeface.createFromAsset(getAssets(), "helvetica.ttf");
    text2.setTypeface(font);                                             

但错误是::

    10-22 17:48:43.883: ERROR/AndroidRuntime(951): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.logistics.typeface/com.logistics.typeface.MainActivity}: java.lang.RuntimeException: native typeface cannot be made
10-22 17:48:43.883: ERROR/AndroidRuntime(951):     at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2663)
10-22 17:48:43.883: ERROR/AndroidRuntime(951):     at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2679)
10-22 17:48:43.883: ERROR/AndroidRuntime(951):     at android.app.ActivityThread.access$2300(ActivityThread.java:125)
10-22 17:48:43.883: ERROR/AndroidRuntime(951):     at android.app.ActivityThread$H.handleMessage(ActivityThread.java:2033)
10-22 17:48:43.883: ERROR/AndroidRuntime(951):     at android.os.Handler.dispatchMessage(Handler.java:99)
10-22 17:48:43.883: ERROR/AndroidRuntime(951):     at android.os.Looper.loop(Looper.java:123)
10-22 17:48:43.883: ERROR/AndroidRuntime(951):     at android.app.ActivityThread.main(ActivityThread.java:4627)
10-22 17:48:43.883: ERROR/AndroidRuntime(951):     at java.lang.reflect.Method.invokeNative(Native Method)
10-22 17:48:43.883: ERROR/AndroidRuntime(951):     at java.lang.reflect.Method.invoke(Method.java:521)
10-22 17:48:43.883: ERROR/AndroidRuntime(951):     at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:868)
10-22 17:48:43.883: ERROR/AndroidRuntime(951):     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:626)
10-22 17:48:43.883: ERROR/AndroidRuntime(951):     at dalvik.system.NativeStart.main(Native Method)
10-22 17:48:43.883: ERROR/AndroidRuntime(951): Caused by: java.lang.RuntimeException: native typeface cannot be made
10-22 17:48:43.883: ERROR/AndroidRuntime(951):     at android.graphics.Typeface.<init>(Typeface.java:147)
10-22 17:48:43.883: ERROR/AndroidRuntime(951):     at android.graphics.Typeface.createFromAsset(Typeface.java:121)
10-22 17:48:43.883: ERROR/AndroidRuntime(951):     at com.logistics.typeface.MainActivity.onCreate(MainActivity.java:16)
10-22 17:48:43.883: ERROR/AndroidRuntime(951):     at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1047)
10-22 17:48:43.883: ERROR/AndroidRuntime(951):     at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2627)
10-22 17:48:43.883: ERROR/AndroidRuntime(951):     ... 11 more

2 个答案:

答案 0 :(得分:6)

在资源中定义字体样式,并在创建元素的位置使用。 像这样:

<style name="CodeFont" parent="@android:style/TextAppearance.Medium">
    <item name="android:layout_width">fill_parent</item>
    <item name="android:layout_height">wrap_content</item>
    <item name="android:textColor">#00FF00</item>
    <item name="android:typeface">monospace</item>
</style>

您也可以参考这些链接:

http://developer.android.com/guide/topics/ui/themes.html

http://www.androidengineer.com/2010/06/using-themes-in-android-applications.html

如果您想使用自定义字体,请查看以下内容:

http://www.barebonescoder.com/2010/05/android-development-using-custom-fonts/

答案 1 :(得分:2)

  

我的应用程序中需要字体字体Helvetica

我希望您已正确许可此分发,如Helvetica appears to be a commercial font

  

适用于所有活动

通过手动捆绑应用中的字体并手动将其应用于每个TextView(或子类),是的。