19

在设置默认字体时,我按照他的文档的指示进行了操作:

 @Override
 protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setupDefaultFont();

        setContentView(R.layout.activity_main);

        setupToolbarAndNavigationDrawer();
  }

  public void setupDefaultFont() {
        CalligraphyConfig.initDefault(new CalligraphyConfig.Builder()
                        .setDefaultFontPath("fonts/OpenSans-Regular.ttf")
                        .setFontAttrId(R.attr.fontPath)
                        .build()
        );
  }

我也将字体放在 中assets/fonts,但无济于事。Roboto 仍然显示为默认字体,而不是 Open Sans。我尝试将它一个一个地手动应用到每个TextView,但它仍然不起作用。

关于为什么这不起作用的任何想法?

更多信息:(如果有用)我的 miniSdkVersion 是 15,targetSdkVersion 是 22。这些是我的依赖项:

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.android.support:appcompat-v7:22.2.0'
    compile 'com.android.support:design:22.2.0'
    compile 'com.android.support:recyclerview-v7:21.0.3'
    compile 'com.android.support:cardview-v7:21.0.3'
    compile 'de.hdodenhof:circleimageview:1.2.1'
    compile 'uk.co.chrisjenx:calligraphy:2.1.0'
}

这是我正在使用的自定义主题。

<resources>
    <style name="myIIT_theme" parent="Theme.AppCompat">
        <item name="colorPrimaryDark">@color/primary_dark</item>
        <item name="colorPrimary">@color/primary</item>
        <item name="android:textColorPrimary">@color/white</item>
        <item name="android:windowBackground">@color/tertiary_dark</item>
        <item name="android:activatedBackgroundIndicator">@drawable/selected_drawer</item>
        <item name="windowActionBar">false</item>
        <item name="windowNoTitle">true</item>
    </style>
</resources>
4

3 回答 3

39

为了使配置生效,您应该在自定义应用程序类的 onCreate() 方法中设置默认字体,而不是在活动中。

此外,https://github.com/chrisjenx/Calligraphy上的说明说通过覆盖活动中的方法来注入上下文,如下所示:

@Override
protected void attachBaseContext(Context newBase) {
    super.attachBaseContext(CalligraphyContextWrapper.wrap(newBase));
}
于 2015-07-14T10:17:42.367 回答
3

除了@Theo 的回答,请确保在清单中注册您的自定义应用程序

<application
  android:name=".MyApplication" <----------- HERE
  android:allowBackup="true"
  android:icon="@mipmap/ic_launcher"
  android:label="@string/app_name"
  android:roundIcon="@mipmap/ic_launcher_round"
  android:supportsRtl="true"
  android:theme="@style/AppTheme">
于 2018-07-11T03:31:48.123 回答
1

正如 github 中的自述文件中所述,此版本的 Calligraphy 已达到其生命周期,不再维护。请迁移到书法3

于 2019-06-01T09:47:30.897 回答