Reputation: 13
How to create a lazy list with images in blackberry 7.1 plz help me
I have created a custom list view and i am passing a bitmap and title text to that custom list view it is displaying it .but i want load the images after loading the list in blackberry as like lazy list in android.
Upvotes: 0
Views: 134
Reputation:
Implement ListFieldCallback. In drawListRow
load images when necessary and draw them. If an image is already loaded, then just draw it, if not, load it before drawing.
And check this tutorial: http://developerlife.com/tutorials/?p=898
Upvotes: 1