Hey guys, I’m developing an application where I use a scrollview to show many images, and it may be the case you need to show more images of which can be viewed at a time.
So you can understand, my screen is the following:
Currently I have installed build 1100 and I have noticed the following problem: when I load into the scrollview more images of which can be viewed at the same time it takes a long time.However, when they are less images appear instantly.
I tested this myself in the build 1076 and everything works fine, with many pictures and few images, appear instantaneously.
My function to create the scrollview is more or less the following:
[lua]function newScrollGrid(params)
local scrollView = widget.newScrollView{
left = params.left,
top = params.top,
width = params.width,
height = params.height,
scrollWidth = params.width,
scrollHeight = params.scrollHeight,
maskFile = params.maskFile,
hideBackground = true,
horizontalScrollDisabled = true,
verticalScrollDisabled = params.scrollVertical,
}
for i = 1, #params.img do
img = display.newImageRect(…)
…
scrollView:insert(img)
…
end
end[/lua]
I hope your help. I need very urgent finish this application for my client. If it is a bug, please confirm it to report it.
regards