How can I change the entire typeface of my android application?
previously I saw this post on github.The solution work fine only for devices with lower than api 21.
For android 5 this method doesn't work even if we add a values-v21
folder with styles.xml
separately.
This is my values-v21/styles.xml
:
<resources>
<style name="AppBaseTheme" parent="Theme.AppCompat.Light.DarkActionBar">
</style>
<style name="AppTheme" parent="AppBaseTheme">
<item name="android:typeface">serif</item>
</style>
</resources>