Темой ресурса является Hashtable. Создайте другой шрифт для больших устройств, например "LargeFont"
, затем просто извлеките его из темы и примените к хеш-таблице, например:
Font f = res.get("LargeFont");
Enumeration e = myTheme.keys();
while(e.hasMoreElements() {
String current = (String)e.nextElement();
if(current.indexOf("font") > -1) {
// add this to a list of keys to change, I'm not sure if you can change them during iteration
}
}
// for every key to change
myTheme.put(key, f);
Теперь у вас есть тема с большими шрифтами.