Reputation: 1217
Can I set the default font which is bydefault set in android app irrespective of which font user has selected???
Thanks in advance
Upvotes: 0
Views: 499
Reputation: 1032
As a developer there is no easy way to use a specific font in every screen of your app.
You have to set your custom font on each and every UI element. This is explained here. Alternatively you can use this CustomFont helper class to change every UI elemnt for you.
Upvotes: 1