A apty Active Member Licensed User Longtime User Nov 11, 2016 #1 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.
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.
Erel B4X founder Staff member Licensed User Longtime User Nov 13, 2016 #2 CustomListView + ImageDownloader: https://www.b4x.com/android/forum/t...ple-way-to-download-images.30875/#post-179512 Upvote 0
CustomListView + ImageDownloader: https://www.b4x.com/android/forum/t...ple-way-to-download-images.30875/#post-179512