D | TextViewFontWeightTest.java | 54 private static class FontStyle { class in TextViewFontWeightTest 55 FontStyle(int weight, boolean italic) { in FontStyle() method in TextViewFontWeightTest.FontStyle 72 private static final Map<Character, FontStyle> CHAR_FONT_MAP; 75 final HashMap<Character, FontStyle> map = new HashMap<>(); 76 map.put('a', new FontStyle(100, false)); 77 map.put('b', new FontStyle(100, true)); 78 map.put('c', new FontStyle(200, false)); 79 map.put('d', new FontStyle(200, true)); 80 map.put('e', new FontStyle(300, false)); 81 map.put('f', new FontStyle(300, true)); [all …]
|