-
-
Notifications
You must be signed in to change notification settings - Fork 672
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
progressive image loading #43
Comments
Not at the moment, but it's a good feature. Do images support that themselves or should a server give two images? |
Yeah, there can two ways:
|
For the image supported progressive loading I will probably need a lot of rewriting as the loading and showing of the image is fully seperated. (File loading is even a seperate library.) Using two images is easier, as I can just start loading the second one when the first one is finished. I am not sure how much developers want something like this, as images for apps are often already optimized to be small. |
I agree, then the library should offer an extra method/option like thumbnail() that would really help. |
I was thinking about a stream, that way you can change it to any amount of images/files. Do you know some easy to read documentation about this? Is this generic or does every image type has its own methods? |
I can tell you about most commonly used Image Loading library on Android i.e Glide. It has great features as well as documentation. |
Hey you can actually use the placeholder widget for this. That's what I'm doing. I pass in a placeholder widget that's basically a lower-res image (already cached) stacked with a progress bar. |
Is there a way to have progressive image loading which is supported by JPEG and WEBp images?
The text was updated successfully, but these errors were encountered: