OLD | NEW |
(Empty) | |
| 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_font
s.xml. |
| 7 Each entry consists of a family tag and a list of files (file names) which s
upport 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 fallbac
k fonts |
| 11 will be searched for glyphs that are not supported by the default system fon
ts (which are |
| 12 found in /system/etc/system_fonts.xml). |
| 13 |
| 14 Note that there is not nameset for fallback fonts, unlike the fonts specifie
d in |
| 15 system_fonts.xml. The ability to support specific names in fallback fonts ma
y be supported |
| 16 in the future. For now, the lack of files entries here is an indicator to th
e 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 f
onts 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 <familyset> |
| 26 <family> |
| 27 <fileset> |
| 28 <file>DroidNaskh-Regular.ttf</file> |
| 29 </fileset> |
| 30 </family> |
| 31 <family> |
| 32 <fileset> |
| 33 <file>DroidSansEthiopic-Regular.ttf</file> |
| 34 </fileset> |
| 35 </family> |
| 36 <family> |
| 37 <fileset> |
| 38 <file>DroidSansHebrew-Regular.ttf</file> |
| 39 <file>DroidSansHebrew-Bold.ttf</file> |
| 40 </fileset> |
| 41 </family> |
| 42 <family> |
| 43 <fileset> |
| 44 <file>DroidSansThai.ttf</file> |
| 45 </fileset> |
| 46 </family> |
| 47 <family> |
| 48 <fileset> |
| 49 <file>DroidSansArmenian.ttf</file> |
| 50 </fileset> |
| 51 </family> |
| 52 <family> |
| 53 <fileset> |
| 54 <file>DroidSansGeorgian.ttf</file> |
| 55 </fileset> |
| 56 </family> |
| 57 <family> |
| 58 <fileset> |
| 59 <file>Lohit-Devanagari.ttf</file> |
| 60 </fileset> |
| 61 </family> |
| 62 <family> |
| 63 <fileset> |
| 64 <file>Lohit-Bengali.ttf</file> |
| 65 </fileset> |
| 66 </family> |
| 67 <family> |
| 68 <fileset> |
| 69 <file>Lohit-Tamil.ttf</file> |
| 70 </fileset> |
| 71 </family> |
| 72 <family> |
| 73 <fileset> |
| 74 <file>DroidSansFallback.ttf</file> |
| 75 </fileset> |
| 76 </family> |
| 77 </familyset> |
OLD | NEW |