fallback_fonts.xml revision 2a41a2d4ccd2f2037a8f44232486b0e08ed3cd4c
1<?xml version="1.0" encoding="utf-8"?>
2<!--
3    Fallback Fonts
4
5    This file specifies the fonts, and the priority order, that will be searched for any
6    glyphs not handled by the default fonts specified in /system/etc/system_fonts.xml.
7    Each entry consists of a family tag and a list of files (file names) which support that
8    family. The fonts for each family are listed in the order of the styles that they
9    handle (the order is: regular, bold, italic, and bold-italic). The order in which the
10    families are listed in this file represents the order in which these fallback fonts
11    will be searched for glyphs that are not supported by the default system fonts (which are
12    found in /system/etc/system_fonts.xml).
13
14    Note that there is not nameset for fallback fonts, unlike the fonts specified in
15    system_fonts.xml. The ability to support specific names in fallback fonts may be supported
16    in the future. For now, the lack of files entries here is an indicator to the system that
17    these are fallback fonts, instead of default named system fonts.
18
19    There is another optional file in /vendor/etc/fallback_fonts.xml. That file can be used to
20    provide references to other font families that should be used in addition to the default
21    fallback fonts. That file can also specify the order in which the fallback fonts should be
22    searched, to ensure that a vendor-provided font will be used before another fallback font
23    which happens to handle the same glyph.
24
25    Han languages (Chinese, Japanese, and Korean) share a common range of unicode characters;
26    their ordering in the fallback or vendor files gives priority to the first in the list.
27    Locale-specific ordering can be configured by adding language and region codes to the end
28    of the filename (e.g. /system/etc/fallback_fonts-ja.xml). When no region code is used,
29    as with this example, all regions are matched. Use separate files for each supported locale.
30    The standard fallback file (fallback_fonts.xml) is used when a locale does not have its own
31    file. All fallback files must contain the same complete set of fonts; only their ordering
32    can differ.
33-->
34<familyset>
35    <family>
36        <fileset>
37            <file variant="elegant">DroidNaskh-Regular.ttf</file>
38        </fileset>
39    </family>
40    <family>
41        <fileset>
42            <file variant="compact">DroidNaskh-Regular-SystemUI.ttf</file>
43        </fileset>
44    </family>
45    <family>
46        <fileset>
47            <file>DroidSansEthiopic-Regular.ttf</file>
48        </fileset>
49    </family>
50    <family>
51        <fileset>
52            <file>DroidSansHebrew-Regular.ttf</file>
53            <file>DroidSansHebrew-Bold.ttf</file>
54        </fileset>
55    </family>
56    <family>
57        <fileset>
58            <file>DroidSansThai.ttf</file>
59        </fileset>
60    </family>
61    <family>
62        <fileset>
63            <file>DroidSansArmenian.ttf</file>
64        </fileset>
65    </family>
66    <family>
67        <fileset>
68            <file>DroidSansGeorgian.ttf</file>
69        </fileset>
70    </family>
71    <family>
72        <fileset>
73            <file>DroidSansDevanagari-Regular.ttf</file>
74        </fileset>
75    </family>
76    <family>
77        <fileset>
78            <file>DroidSansTamil-Regular.ttf</file>
79            <file>DroidSansTamil-Bold.ttf</file>
80        </fileset>
81    </family>
82    <family>
83        <fileset>
84            <file>AnjaliNewLipi-light.ttf</file>
85        </fileset>
86    </family>
87    <family>
88        <fileset>
89            <file>Lohit-Bengali.ttf</file>
90        </fileset>
91    </family>
92    <family>
93        <fileset>
94            <file>Lohit-Kannada.ttf</file>
95        </fileset>
96    </family>
97    <family>
98        <fileset>
99            <file>AndroidEmoji.ttf</file>
100        </fileset>
101    </family>
102    <family>
103        <fileset>
104            <file>DroidSansFallback.ttf</file>
105        </fileset>
106    </family>
107    <family>
108        <fileset>
109            <file>MTLmr3m.ttf</file>
110        </fileset>
111    </family>
112    <!--
113        Fonts below this point have problematic glyphs and should not be moved
114        higher in the fallback list until those glyphs have been fixed.
115    -->
116    <family>
117        <fileset>
118            <file>Lohit-Telugu.ttf</file> <!-- masks U+FFBC-10007 -->
119        </fileset>
120    </family>
121</familyset>
122