Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

which are default font comes with all android 2.1 and above

Tags:

android

fonts

I want list of fonts used by the android framework.

like image 638
Shrenik Avatar asked Jan 11 '11 10:01

Shrenik


2 Answers

The three provided fonts in android (through 2.3 at least) are:

  • Droid Serif (Typeface.SERIF)
  • Droid Sans (Typeface.SANS_SERIF)
  • Droid Sans Mono (Typeface.MONOSPACE)

If you don't specify a typeface, the default is usually Typeface.SANS_SERIF

like image 180
Kevin Dion Avatar answered Sep 20 '22 14:09

Kevin Dion


As you see in the class Typeface, there's SANS_SERIF, SERIF and MONOSPACE.

like image 20
SteD Avatar answered Sep 20 '22 14:09

SteD