I am currently building a FireMonkey App for Android. I have a function that gets a number out of the database, and using that number, it generates the same amount of rectangles. These rectangles are added into a TGridLayout. Right now I have close to 60 rectangles generated, and the TVertScrollBox works unresponsive, slow and choppy. Is there any way to implement another way of scrolling into my app? Or something to fix this slow and unresponsive scrolling?
1 Answers
0
votes
Utilize TImageCacheLayout to cache your components as bitmaps. Should increase speed. The slow scrolling of a TListBox with a lot of components on Android is fixed in Delphi XE8.
TListBox
with just 20 items in it. – Jerry Dodge