Reputation: 1512
How can we change a font color while using Rich List in Blackberry.
Upvotes: 1
Views: 177
Reputation: 1512
final VerticalFieldManager vfm = new VerticalFieldManager(){
protected void paint(Graphics graphics){
graphics.setColor(0x36c9e3);
super.paint(graphics);
}
};
RichList list = new RichList(vfm, true,1, 2);
Upvotes: 2