blackberry - How to change default text color of application? -


how can set text color of fields white?

afaik, there no such option in bb api. can override field.paint(grahpics grahpics), smth this:

... public void paint(grahpics grahpics) {     int initialcolor = grahpics.getcolor(); // in case     grahpics.setcolor(color.white);     super.paint(grahpics);     grahpics.setcolor(initialcolor); } ... 

so create set of custom white-colored fields (whitelabelfield, whiteeditfield, etc.) , use them istead of originals.


Comments