How can I set text color of all Fields to white?
相关问题
- How to make background of BrowserField transparent
- Eclipse Blackberry Preprocessor Not Working?
- Cannot register in sample BlackBerry push applicat
- Unexpected JDWP Error 21
- Receive text message using J2ME
相关文章
- To get the module names in blackberry
- How to close a global dialog and display another i
- Button Image Problem
- How to install a draft app on a blackberry sandbox
- FB SDK not working on OS 7
- Parent & Child Node with different images & Clicka
- What unit-test frameworks would you recommend for
- SQLite for BlackBerry
AFAIK, there is no such option in BB API. You can only override
Field.paint(Grahpics grahpics)
, smth like this:So you could create a set of custom white-colored Fields (WhiteLabelField, WhiteEditField, etc.) and use them istead of the originals.