我使用书法库来更改整个应用程序的字体。一切正常,直到我决定更改导航抽屉的文本大小。我已经定义了以下使用的app:itemTextAppearance
样式NavigationView
。现在文本大小已更改,但使用默认系统字体。这是我的风格TextAppearance
:
<style name="NavDrawerTextStyle" parent="android:TextAppearance">
<item name="android:textColor">@color/colorPrimaryDark</item>
<item name="android:textSize">16sp</item>
</style>
我还尝试fontPath
在样式中定义字体,但仍然没有运气。