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.
Now in this case i would like to load the labels then load the bitmaps one by one.
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.