如何在Android中的整个应用程序中设置自定义字体

时间:2014-11-22 07:50:32

标签: android android-layout

我想在我的整个应用程序中显示自己的自定义字体“.ttf”

请注意...... 我不需要仅通过创建字体来更改“文本视图”,“编辑文本”和“按钮”文本字体

2 个答案:

答案 0 :(得分:2)

唯一的出路是扩展Android UI小部件并创建自定义视图。但这是一个乏味的过程。相反,您可以使用Calligraphy Project

  

书法
  Android中的自定义字体很容易。

     

您是否厌倦了自定义视图来设置字体?或者穿越   ViewTree找到TextViews?我也是。

您可以参考这些答案以获取更多信息 Android - Using Custom Font

以下链接取自评论:
Using a custom typeface in Android
How to set default font family for entire Android app

答案 1 :(得分:0)

您可以在应用标记下的manifest.xml文件中声明自定义字体样式。 例如: -

    <application
            android:name="com.digimedia.icouch.bean.AppContext"
            android:icon="@drawable/app_logo"
            android:label="@string/app_name"
            android:theme="@style/CustomActionBarTheme" >