Hello,
I come across fillRect() problem on Samsung GT s5250.
When I test below snippet of code
It's glitches; mean screen is not painting properly.Code:graphics.setColor(0xFF0000); graphics.fillRect(0, 0, getWidth(), getHeight());
Anyway, I got workaround for that is fillRoundRect(); below snippet of code working as such
But still I have a anxiety about it.Code:g.fillRoundRect(0, 0, getWidth(), getHeight(),0,0);
Is it because of device firmware?
If, then how I get it from J2ME;please don't let me know about "microedition.platform".
Since, we can't get it using this.
Hope I have been elaborated my problem up to understanding level.
In brief, I would like to say that fillRect() is not painting as such whereas fillRoundRect() is.
Cheers,
Amit

Reply With Quote


