blob: 999ddc43d67e964bedbdff3e8fdc10fca4cb007a [file] [log] [blame]
Chet Haasec8f060c2011-07-06 11:17:26 -07001<?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.
Russell Brenner2b4b35c2012-03-08 10:25:17 -080024
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.
Billy Hewlettac1cbaf2012-07-18 09:51:45 -070027 Language-specific ordering can be configured by adding a BCP 47-style "lang" attribute to
28 a "file" element; fonts matching the language of text being drawn will be prioritised over
29 all others.
Chet Haasec8f060c2011-07-06 11:17:26 -070030-->
31<familyset>
32 <family>
33 <fileset>
Billy Hewlett973835b2012-06-21 09:57:57 -070034 <file variant="elegant">DroidNaskh-Regular.ttf</file>
35 </fileset>
36 </family>
37 <family>
38 <fileset>
39 <file variant="compact">DroidNaskh-Regular-SystemUI.ttf</file>
Chet Haasec8f060c2011-07-06 11:17:26 -070040 </fileset>
41 </family>
42 <family>
43 <fileset>
Russell Brenner359d0522011-07-19 10:42:46 -070044 <file>DroidSansEthiopic-Regular.ttf</file>
45 </fileset>
46 </family>
47 <family>
48 <fileset>
Chet Haasec8f060c2011-07-06 11:17:26 -070049 <file>DroidSansHebrew-Regular.ttf</file>
50 <file>DroidSansHebrew-Bold.ttf</file>
51 </fileset>
52 </family>
53 <family>
54 <fileset>
55 <file>DroidSansThai.ttf</file>
56 </fileset>
57 </family>
58 <family>
59 <fileset>
Russell Brennere8a7a722011-09-01 14:12:47 -070060 <file>DroidSansArmenian.ttf</file>
61 </fileset>
62 </family>
63 <family>
64 <fileset>
65 <file>DroidSansGeorgian.ttf</file>
66 </fileset>
67 </family>
68 <family>
69 <fileset>
Victoria Leasebd1844d2012-04-26 11:18:40 -070070 <file>DroidSansDevanagari-Regular.ttf</file>
Russell Brenner36de3692011-07-27 17:36:11 -070071 </fileset>
72 </family>
73 <family>
74 <fileset>
Victoria Leasec24de462012-05-08 11:01:09 -070075 <file>DroidSansTamil-Regular.ttf</file>
76 <file>DroidSansTamil-Bold.ttf</file>
Raph Leviend26e18b2012-05-14 13:11:57 -070077 </fileset>
Victoria Leasec24de462012-05-08 11:01:09 -070078 </family>
79 <family>
80 <fileset>
81 <file>AnjaliNewLipi-light.ttf</file>
82 </fileset>
83 </family>
84 <family>
85 <fileset>
Bart Sears57e08552011-10-26 17:06:23 -070086 <file>Lohit-Bengali.ttf</file>
87 </fileset>
88 </family>
89 <family>
90 <fileset>
Victoria Leasec24de462012-05-08 11:01:09 -070091 <file>Lohit-Kannada.ttf</file>
92 </fileset>
93 </family>
94 <family>
95 <fileset>
Bart Sears562c45c2012-09-24 00:32:57 -070096 <file>NanumGothic.ttf</file>
97 </fileset>
98 </family>
99 <family>
100 <fileset>
Bart Searse60bae12011-12-11 18:21:56 -0800101 <file>AndroidEmoji.ttf</file>
102 </fileset>
103 </family>
104 <family>
105 <fileset>
Raph Levienab815a72012-12-04 14:02:43 -0800106 <file>Lohit-Telugu.ttf</file>
107 </fileset>
108 </family>
109 <family>
110 <fileset>
Chet Haasec8f060c2011-07-06 11:17:26 -0700111 <file>DroidSansFallback.ttf</file>
112 </fileset>
113 </family>
Russell Brenner1c097a92012-03-28 09:45:27 -0700114 <family>
115 <fileset>
Billy Hewlettac1cbaf2012-07-18 09:51:45 -0700116 <file lang="ja">MTLmr3m.ttf</file>
Russell Brenner1c097a92012-03-28 09:45:27 -0700117 </fileset>
118 </family>
Raph Levienab815a72012-12-04 14:02:43 -0800119 <!-- Note: complex scripts (i.e. those requiring shaping in Harfbuzz) have
120 a cumulative limit of 64k glyphs. Thus, if they are placed after the
121 large fonts such as DroidSansFallback, they are likely to render
122 incorrectly. Please use caution when putting fonts toward the end of
123 the list.
Victoria Lease2a41a2d2012-07-17 16:41:18 -0700124 -->
Chet Haasec8f060c2011-07-06 11:17:26 -0700125</familyset>