Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Default list of fonts which supports android,ios and blackberry operating systems

Scenario

We are group of friends whom developing the applications for android, blackberry and ios operating systems, we are in need to implement the font family changes in our application.

What I need:

Is there any common list of fonts which are supported by all three operating systems?

like image 610
helloworld Avatar asked Aug 22 '12 07:08

helloworld


2 Answers

iOS: Here is a list of the default fonts supported on iOS: http://iosfonts.com/

Android: There are only three system wide fonts in Android; normal (Droid Sans), serif (Droid Serif), and monospace (Droid Sans Mono). Source: http://wiki.mobileread.com/wiki/List_of_fonts_included_with_each_device

Blackberry: http://supportforums.blackberry.com/t5/Adobe-AIR-Development/List-of-available-fonts/td-p/1243913

like image 134
Simon Epskamp Avatar answered Sep 21 '22 17:09

Simon Epskamp


No and yes.

If you have the font you can display any font on Android but default Android only have roboto font.

iOS has at least helvetica family of fonts and I believe it also supports custom fonts (please correct me if I'm wrong).

Edit: I believe there is no build in fonts that are supported on all the platforms, BUT all platforms support custom fonts so you should just pick one and use it.

For iOS custom fonts see here: Can I embed a custom font in an iPhone application?

For Android custom fonts see here: Custom Fonts in Android

For Blackberry custom fonts look here: To set multiple fonts in blackberry

Hope that clarified a little

like image 30
Warpzit Avatar answered Sep 20 '22 17:09

Warpzit