Reputation: 65
How to understand what are the system default fonts on Android system which is using and get their paths ( directory location )? I know they are in system/fonts , but I do not how to know and find out which of them are using and in which part which system fonts are being applied by system as default. I am using Android Studio.
Upvotes: 4
Views: 2357
Reputation: 3353
There is no way to get the name/location of the system default font.
You can only get default Typeface, use: Typeface.DEFAULT
https://developer.android.com/reference/android/graphics/Typeface.html
Upvotes: 4