iOS Question Number of Object per Page

aaronk

Well-Known Member
Licensed User
Longtime User
Hi,

With B4A I was loading a large list (500 rows) and each row in the list had approx. 4 labels and 2 images (6 objects per row)
6 x 500 = 3000 objects.

I found my B4A app crashed due to running out of memory, and I then used the Ultimate List View - http://www.b4x.com/android/forum/threads/lib-chargeable-ultimatelistview.22736/#content

Since using that my B4A app is fine.

Now, my question is will I have the same issue with a app written with B4i ?
How many items can be placed on the screen (in a list) before the app will run out of memory or is there something similar to the ULV that I can use with B4i ?
 

Erel

B4X founder
Staff member
Licensed User
Longtime User
The question is not about the number of items. It is the number of images that caused your app to run out of memory.

You can add thousands (or more) items to a page and it will work fine.

Images take quite a lot of memory. Currently there is no LoadBitmapSample in B4i so you need to make sure that the images are not too large.
 
Upvote 0
Top