-
Notifications
You must be signed in to change notification settings - Fork 6.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Restrict image loading while list scrolling #106
Comments
Hi, I have just ended "Delay before image loading" feature and I'm working on class-helper exactly for your purpose. Will be very soon. |
Thank you very much for the quick reply! |
Look into OnScrollSmartOptions, it used in example project. Also I'll think about adding functionality to pause/resume ImageLoader while scrolling. |
Awesome! Just for clearence, the images will start loading in once the delay ended, right? I want to fully cancel the effect, and prevent them from loading. So i intend to skip the image loading phase while the scrolling is imminent, and start the loading (only the visible ones) once it stopped and the scroll state changed back to idle. This would be very helpful. Thanks in advance! |
smartOptions = new OnScrollSmartOptions(options, 999999, 999999, touchListener.makeScrollListener()); |
sorry i didn't used the smartOptions.getOptions() method in the displayImage. |
I'm working on it. |
thank you :) |
Added ImageLoader.pause() and .resume() methods. Added PauseOnScrollListener for convenient pause/resume list views. Removed OnScrollSmartOptions. Refactoring
Added |
Where can I see PauseOnScrollListener example project? |
In sample project. |
Hi, Thanks, |
@SanjayKMath late, but just in case, you can try to set a default image after getTag() in the getView() function |
Hello!
The library is great but I have a question. Is it possible to restrict the image loading in listview just for the state of scroll idle state. So prevent loading when scrolling to boost up performance.
Thank in advance!
Best Regards.
The text was updated successfully, but these errors were encountered: