Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

It always draw all focus elements , but it doesnt refresh the others until listfield is scrolled. That's only a problem in Blackberry 4.5 , 5.0 is ok.

I have tried to do the next before draw anything intoe the row :

    public void drawListRow(ListField listField, Graphics graphics,int index, int y, int width) 
    {
        listField.invalidate(); //My try
             ...
    }

But it doesn't run .

Update

Ok , no invalidate().

I'll show you my problem better with an Image:

enter image description here

Thanks for reading . Any idea?

share|improve this question
2  
dont put an invalidate inside drawlistrow(); – rfsk2010 Feb 23 '12 at 15:36
@rfsk2010 understood thanks. – A.Quiroga Feb 24 '12 at 8:57

1 Answer

What your code snippet will do is every time one row is drawn, invalidate the entire field causing all visible rows to be redrawn, which will invalidate the entire field...

I hope some one at RIM thought of that and aborts the invalidate call. I can't give you any more ideas without more specific information about what you are doing with your user interface.

share|improve this answer
1  
you took words out of my mouth, the code above is as if there is an invalidate() inside paint(); – rfsk2010 Feb 23 '12 at 15:34
@Richard i have updated with an image with my problem . Thanks. – A.Quiroga Feb 24 '12 at 8:56
Yes, I understand what the symptoms are, but that doesn't help diagnose what may be wrong with your code. – Richard Feb 24 '12 at 12:45

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.