There is a customized CField (extends from Field) I am working on it, the platform is BlackBerry OS7.1, use java environment.
Now I want to handle the drawing things of CField all by myself, and not allow the field paint it's background automatically, so I can reuse the previous drawed elements, that will make animation effects more efficient.
I override the function:
protected void paintBackground(Graphics g) {
// do nothing here
}
Unfortunately, it doesn't work, the field still erases all previous drawed elements.
Need your kindly help, thanks a lot!
paintas well. This is a good tutorial on creating custom fields. – Mister Smith Feb 11 at 9:49