PatilShreyas / MaterialDialog-Android

📱Android Library to implement animated, 😍beautiful, 🎨stylish Material Dialog in android apps easily.
Apache License 2.0
939 stars 143 forks source link

[ISSUE] Is it possible not to change the dialog font? #61

Closed TigerBeanst closed 2 years ago

TigerBeanst commented 2 years ago

It seems that dialog use Montserrat font by default. I want to just use the system font, but the system font doesn't seem to be able to be called directly in XML...

TigerBeanst commented 2 years ago

Got it, add this to styles.xml / themes.xml

<style name="MaterialDialog">
    <item name="android:fontFamily">sans-serif</item>
</style>