In Java I would do something like:

java.awt.GraphicsEnvironment.GraphicsEnvironment ge = java.awt.GraphicsEnvironment.GraphicsEnvironment.getLocalGraphicsEnvironment();
Font[] fonts = ge.getAllFonts(); 

is there an Android equivalent?

link|improve this question

77% accept rate
feedback

3 Answers

up vote 15 down vote accepted

Taken from Mark Murphy's answer on the Android Developers mailing list:

http://developer.android.com/reference/android/graphics/Typeface.html

There are only three fonts: normal (Droid Sans), serif (Droid Serif), and monospace (Droid Sans Mono).

While there may be additional fonts buried in WebKit somewhere, they appear to be inaccessible to developers outside of WebKit. :-(

The only other fonts are any TrueType ones you bundle with your application.

link|improve this answer
3  
I... can actually work with that... Gotta appreciate the simplicity of options. – Raine Sep 1 '11 at 14:59
Can anyone say font fragmentation? /jk – Marius Oct 24 '11 at 16:34
There's no problem. You can use any font you like and just include it in your project. Works perfectly – matto1990 Nov 3 '11 at 10:34
2  
until you work in web development, and start cursing at Android for not even supporting Arial. That's just sad. – Antony Jan 27 at 21:02
Actually many web artists would probably be quite happy if there's no Arial... – Lohoris Mar 23 at 17:28
feedback

There are only 3 fonts available as part of android; normal (Droid Sans), serif (Droid Serif), and monospace (Droid Sans Mono).

Apps can include their own truetype fonts but can't install them for use by other apps.

couple of links about the fonts:

link|improve this answer
feedback

Android includes 3 base fonts, but unlike iOS, allow you to use just about any font you'd like. You can simply embed it with your app, instead of being limited to a preset list of fonts like Apple does (Apple doesn't allow font embedding). Pretty convenient.

Note that this is for Android itself, but web browsers (including the basic pre-installed Android web browser) does support all the standard HTML fonts.

link|improve this answer
8  
This is no longer true - iOS 4+ allows apps to embed their own fonts, in addition to the 58 font families provided by iOS. – wildcard Nov 12 '11 at 6:45
3  
And those 58 cover the gamut if you're not doing anything off-the-wall with fonts: iosfonts.com – Sold Out Activist Dec 20 '11 at 8:04
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.