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

Sam*_*iya 3 android

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

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

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

但错误是::

    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
Run Code Online (Sandbox Code Playgroud)

Rav*_*rma 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>
Run Code Online (Sandbox Code Playgroud)

您也可以参考这些链接:

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/