37

What fonts are installed by default on Android devices?

I know about the Droid fonts and Roboto, but what about core web fonts like Arial, Times, or Verdana? Are they available? What other fonts are installed by default on Android devices?

(This question has been asked before, but the accepted answer is outdated)

Community
  • 1
  • 1
Jaap Joris Vens
  • 3,382
  • 2
  • 26
  • 42
  • No these are not available by default. Read http://stackoverflow.com/questions/3532397/how-to-retrieve-a-list-of-available-installed-fonts-in-android – Pankaj Kumar Apr 01 '15 at 06:28

2 Answers2

29

There are only three system wide fonts in Android;

1 normal (Droid Sans),

2 serif (Droid Serif),

3 monospace (Droid Sans Mono).

Applications can install fonts for themselves, but not for system-wide use.

For more you can see List of fonts included with each device link

and

Since the Ice Cream Sandwich release, Roboto has been the standard typeface on Android.

Since Froyo, Noto has been the standard typeface on Android for all languages not covered by Roboto. Noto is also the standard typeface for all languages on Chrome OS.

Refer here

Community
  • 1
  • 1
BBdev
  • 4,898
  • 2
  • 31
  • 45
  • 3
    Wrong. You didn't mention the Roboto fonts family which is available starting from the Android 4.0. – aga Apr 01 '15 at 06:34
  • please leave a comment for the reason of downvote – BBdev Apr 01 '15 at 06:34
  • 1
    This is not default on android devices its depend upon what version you are using. – BBdev Apr 01 '15 at 06:39
  • I have added that part to .. In my answer. – BBdev Apr 01 '15 at 06:45
  • 9
    90% of all Android devices are 4.0+ and I don't see anybody around me starting new project which supports something earlier than Ice Cream Sandvich, so if your `minSdkVersion` is greater or equal to 14 (and it should be, because it's time to drop support of earlier versions) it's safe to assume that Roboto is default font. – aga Apr 01 '15 at 06:45
  • Its safe to assume thats why i have added that part thanks for correcting me . :-) – BBdev Apr 01 '15 at 06:46
  • 1
    I downvoted because the top, highlighted thing in your answer is out of date information. You should edit it to put the most likely thing to be true in this day and age at the top of your answer. – Scott Cranfill Nov 29 '17 at 22:21
5

It all depends on Android version.

In Lollipop ROBOTO FONT FAMILY is installed.

For more detail go through this answer.

Community
  • 1
  • 1