system_fonts.xml revision 289c09aae5879936bdeeabdc8047fcf2c7d28c6e
1<?xml version="1.0" encoding="utf-8"?>
2<!--
3    System Fonts
4
5    This file lists the font families that will be used by default for all supported glyphs.
6    Each entry consists of a family, various names that are supported by that family, and
7    up to four font files. The font files are listed in the order of the styles which they
8    support: regular, bold, italic and bold-italic. If less than four styles are listed, then
9    the styles with no associated font file will be supported by the other font files listed.
10
11    The first family is also the default font, which handles font request that have not specified
12    specific font names.
13
14    Any glyph that is not handled by the system fonts will cause a search of the fallback fonts.
15    The default fallback fonts are specified in the file /system/etc/fallback_fonts.xml, and there
16    is an optional file which may be supplied by vendors to specify other fallback fonts to use
17    in /vendor/etc/fallback_fonts.xml.
18-->
19<familyset>
20
21    <family>
22        <nameset>
23            <name>sans-serif</name>
24            <name>arial</name>
25            <name>helvetica</name>
26            <name>tahoma</name>
27            <name>verdana</name>
28        </nameset>
29        <fileset>
30            <file>Roboto-Regular.ttf</file>
31            <file>Roboto-Bold.ttf</file>
32            <file>Roboto-Italic.ttf</file>
33            <file>Roboto-BoldItalic.ttf</file>
34        </fileset>
35    </family>
36
37    <family>
38        <nameset>
39            <name>sans-serif-light</name>
40        </nameset>
41        <fileset>
42            <file>Roboto-Light.ttf</file>
43            <file>Roboto-LightItalic.ttf</file>
44        </fileset>
45    </family>
46
47    <family>
48        <nameset>
49            <name>serif</name>
50            <name>times</name>
51            <name>times new roman</name>
52            <name>palatino</name>
53            <name>georgia</name>
54            <name>baskerville</name>
55            <name>goudy</name>
56            <name>fantasy</name>
57            <name>cursive</name>
58            <name>ITC Stone Serif</name>
59        </nameset>
60        <fileset>
61            <file>DroidSerif-Regular.ttf</file>
62            <file>DroidSerif-Bold.ttf</file>
63            <file>DroidSerif-Italic.ttf</file>
64            <file>DroidSerif-BoldItalic.ttf</file>
65        </fileset>
66    </family>
67
68    <family>
69        <nameset>
70            <name>Droid Sans</name>
71        </nameset>
72        <fileset>
73            <file>DroidSans.ttf</file>
74            <file>DroidSans-Bold.ttf</file>
75        </fileset>
76    </family>
77
78    <family>
79        <nameset>
80            <name>monospace</name>
81            <name>courier</name>
82            <name>courier new</name>
83            <name>monaco</name>
84        </nameset>
85        <fileset>
86            <file>DroidSansMono.ttf</file>
87        </fileset>
88    </family>
89
90</familyset>
91