Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何更改黑莓中文本的字体颜色?
试试这个 -
LabelField l = new LabelField("hello") { protected void paint(Graphics g) { g.setColor(0x0511a0a); //here you can add any colors. either color codes (like - 0x0511a0a) or like this- Color.RED super.paint(g); } };