Ahmad Shahwaiz
Ahmad Shahwaiz

Reputation: 1512

In Blackberry How to customize font colors and still use a RichList

How can we change a font color while using Rich List in Blackberry.

Upvotes: 1

Views: 177

Answers (1)

Ahmad Shahwaiz
Ahmad Shahwaiz

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

Related Questions