fabrantes / rockon-android

RockOn is a music player for Android. It has a nice all-graphic UI interface making it the player of choice if you prefer browsing your music library by album art.
http://abrantix.org/rockon.php
24 stars 14 forks source link

Album list sliding window implementation #5

Open fabrantes opened 15 years ago

fabrantes commented 15 years ago

The current implementation puts all album covers in memory so that scrolling is smooth. If the number of albums exceeds 30?, the album covers are stored slowly begin to degrade quality. If the number of albums exceeds 80? then the albums are not stored in memory.

the goal is to implement a memory pool of album covers with only a limited number of covers (say 30?) - and then manage this memory pool when the list stops scrolling. Very important is that this memory management does not affect the smoothness of the list scroll.

fabrantes commented 15 years ago

Did my first commit. This upgrade is 90% complete....