In the previous question Codename One - Method to enlarge or reduce all the fonts in all the styles I replied with a method that iterates all the values of a theme and, if a
The error was the line:
Hashtable hashtable = theme.getTheme("Theme");
The correct code is without the double quotes:
Hashtable hashtable = theme.getTheme(Theme);
That's all :)