How to get default Typeface of Android device? How to get default Typeface of Android device? android android

How to get default Typeface of Android device?


You can get the default Typeface using:

if (keep_curren) {    font_title = Typeface.DEFAULT;}

You can also get the default Typeface based on specified style: Typeface.defaultFromStyle(int style).

More on this: Here.