which are default font comes with all android 2.1 and above
I want list of f开发者_如何学Conts used by the android framework.
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
As you see in the class Typeface, there's SANS_SERIF
, SERIF
and MONOSPACE
.
精彩评论