Comment 2 for bug 1222846

Revision history for this message
Olivier Tilloy (osomon) wrote :

I’m testing on a Galaxy Nexus, and the year view is slow when scrolling both vertically and horizontally.
Vertical scrolling doesn’t just "seem" slow. It is very slow, due to the number of items in the scene.

Looking at the code, each screen of the YearView is a Flickable with a Grid inside it. Meaning that all the months are always instantiated in memory, even though a maximum of 6 of them are partially visible at any given time. Replacing the flickable with a GridView would probably help, as it will keep only the delegates needed in memory.