Android Question Listview load images separately

apty

Active Member
Licensed User
Longtime User
I have a listview that i use to show images and their names. The listview may grow very big and it becomes slow when loading the images.

I wanted to load the labels first(since they are known) and then load images one by one on the listview.

B4X:
For i=0 To 4000
lv.AddTwoLinesAndBitmap("lbl"&i,"Name",LoadBitmap(File.DirRootExternal, "aa.png"))
Next

Now in this case i would like to load the labels then load the bitmaps one by one.
 
Cookies are required to use this site. You must accept them to continue using the site. Learn more…