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); } };