Questions tagged [image-loading]

386 questions
10
votes
5 answers

Showing a Progress bar while loading image using Coil?

How to show a progress bar while fetching image from URL in Coil.?
Unaisul Hadi
  • 620
  • 1
  • 7
  • 22
10
votes
1 answer

Using RequestOptions in AppGlideModule with Glide 4

I used the `Glide library with AppGlideModule, version of library 4.1.1. Here is my glide module class: @GlideModule public class GlideUtil extends AppGlideModule { private final int IMAGE_CACHE_SIZE = 20 * 1024 * 1024; // 20 MB private…
Alex D.
  • 1,424
  • 15
  • 40
10
votes
2 answers

Imageloader class creates lazylist folder in gallery. How to avoid it

I am using imageLoader class to load images from url. But those all images are storing in the gallery by a folder name called LazyList. It takes upto 40 -100 mb of memory. But I dont want to load that images since the users may feel discomfort.…
Kartheek Sarabu
  • 3,886
  • 8
  • 33
  • 66
10
votes
0 answers

ImageLoader vs Android Universal Image Loader

Has anyone had experience with a network image loader library for Android they can recommend? Specifically I saw these two in my research but am not sure if either is better or more widely used. Can anyone highlight the differences or pros/cons…
MonkeyBonkey
  • 46,433
  • 78
  • 254
  • 460
9
votes
4 answers

Intercepting image load request of the browser

I would like to know if there is a way to intercept the image loading requests of a browser and add some request headers expected by the server. The actual scenario is this. The web app sends an XHR to the server and completes an authentication…
Bala
  • 91
  • 1
  • 2
9
votes
2 answers

How Picasso Actually Cache the Images

I would like to know how exactly Picasso Library is caching the images inside the application. I know it used HttpHeaders to check weather to fetch images from network. But, is there any time frame it is caching the images ? Like invaliding the…
Aung Pyae
  • 1,590
  • 2
  • 16
  • 25
8
votes
3 answers

Loading AssetImages with Flutter

I'm trying to define some assets for my Flutter app. This is my directory structure: - lib - assets - images └ bg_login.png <-- this one is 400x800px └ 2.0x └ bg_login.png <-- this one is 800x1600px. - test - ios - android - build -…
BackSlash
  • 21,927
  • 22
  • 96
  • 136
8
votes
3 answers

ListView - ImageLoader moves List / Items on Scroll up

I'm looking for an answer half a day, but I can't find anything although I thought it is a common problem. My Problem: I have a ListView which has items of different sizes (heights). Every item contains an ImageView. The Image for this ImageView is…
Wicked161089
  • 481
  • 4
  • 18
8
votes
4 answers

Loading images from URL partially, just like what is implemented in WhatsApp

WhatsApp developers recently improved the image loading in which immediately loading some portion of the image (getting its dimension and some pixels of the images) and then after loading the entire image, replace the placeholder with the full…
Eng.Fouad
  • 115,165
  • 71
  • 313
  • 417
7
votes
3 answers

How to download an image using Glide via HTTP POST method

Server provides the API to load image through Post request, whose body looks like { "image_id": someId, "session_id": "someId" } Response - stream. How to download an image using Glide via HTTP POST method?
7
votes
3 answers

Image flickering while scrolling in RecyclerView

I'm trying to display a list of songs found on the device requesting data directly from the MediaStore. I'm using a RecyclerView and an adapter that uses a CursorAdapter to get data from MediaStore. When adapter's onBindViewHolder is called, the…
fillobotto
  • 3,698
  • 5
  • 34
  • 58
7
votes
6 answers

Glide not loading image from memory at the first time when rotating (orientation change), and after that it is loading from memory

Glide not loading image from memory at the first time when rotating (orientation change), and after that it is loading from memory. I have tried to increase the memory size, the bitmap pool size, all kinds of caching strategies... nothing seemed to…
oznus
  • 2,446
  • 2
  • 25
  • 18
7
votes
2 answers

Load image from url to Recyclerview

I have an app that loads content from a database as well as images from the internet. I am using a RecyclerView along with CardView to display my content in a list form. Each row has an image on the left side and text on the right. The problem is…
spongyboss
  • 291
  • 2
  • 4
  • 14
6
votes
6 answers

Load image to a tableView from URL iphone sdk

I have tableView and need to load image from URL. I have an array that contains the URLs of images and when the page loads I need to load all the images into the tableview. Note that, not from a single URL, have an array with different URLs. How can…
Mithun
  • 459
  • 1
  • 10
  • 32
6
votes
2 answers

Glide V4 load https images

I know this link, and tried but this is for Glide V3 solution, I need to load https://myimage/image/xxx.png but glide throw exception FileNotFoundException(No content provider)** and **SSLHandshakeException:…
Mohit Suthar
  • 8,725
  • 10
  • 37
  • 67
1
2
3
25 26