please tell me how i can paint the whole screen in a rimlet?
Posted
by user188391
on Stack Overflow
See other posts from Stack Overflow
or by user188391
Published on 2010-04-22T22:50:51Z
Indexed on
2010/04/22
22:53 UTC
Read the original article
Hit count: 123
blackberry
i am developing a blackberry app. i want to paint the screen. i have implemented this VerticalFieldManager hfmBg = new VerticalFieldManager(Field.USE_ALL_HEIGHT ) { protected void paint(Graphics g) {
g.setBackgroundColor(Color.SILVER);
g.clear();
super.paint(g);
}//end of paint method
};//end of vertical field manager
but tell me is there any other approach to paint the whole screen?
© Stack Overflow or respective owner