Questions tagged [imageloader]

27 questions
0
votes
3 answers

Should i use an image loading library like Fresco?

I have a recycler view in my app with 300+ images in it and i am trying to improve it's performance. Should i use an image loading library for loading these images instead of just doing imageView.setImageResource(..)? Will that help?
Stelios Papamichail
  • 955
  • 2
  • 19
  • 57
0
votes
2 answers

What is the right coding about Image Loading?

I'm solving my problem about Image Loader and I have some problems.. What I want is to show many images (about 400) in GridView(or ListView). I don't want to use the Library like Picasso, Glide like that. and Here is the problem. When I call the…
Adrian
  • 301
  • 4
  • 15
0
votes
1 answer

ImageLoader: connect timed out

I'm using ImageLoader to load images from internet. But I got error message "E ImageLoader: connect timed out", the trace is: 05-29 16:39:02.994 9988 10417 E ImageLoader: connect timed out 05-29 16:39:02.994 9988 10417 E ImageLoader: …
Leon
  • 31
  • 8
0
votes
1 answer

setMinimumLoggingLevel to VERBOSE leads performance degradation

I am using fresco to loading image in a ListView. Each list item contains about 25 images. When I enable fresco log by call FLog.setMinimumLoggingLevel(FLog.VERBOSE); I saw a huge performance degradation, setting image on 25 images cost about…
Eric Huang
  • 33
  • 4
0
votes
0 answers

Crash issue when moving from background to foreground

I am developing a VOIP application. Sometimes I am getting a crash issue when moving from background to foreground. Here is the crash log. MyApp is my app's name. According to the log, it says "bad food" issue. Termination Reason: Namespace…
James Chan
  • 97
  • 2
  • 12
0
votes
1 answer

Image is not loading when loaded using ImageLoader

I am trying to set an image from url using ImageLoader. Here is my code DisplayImageOptions options = new DisplayImageOptions.Builder() .cacheInMemory(true) .cacheOnDisk(true) …
Mansuu....
  • 1,206
  • 14
  • 27
0
votes
1 answer

Image will not show on detailed activity when an item is clicked on

I am using the volley library for the networking side. I am trying to get the image to be loaded onto the next screen when I click on an item on the list. In the XML file, I am using the "NetworkImageView" to hold the image. I am using intent to…
hhh
  • 23
  • 1
  • 1
  • 4
0
votes
3 answers

ERROR AsyncTask #1 while executing doInBackground And OutOfMemoryError

I have an Error while load multiple image, the image successfully load, but it can't open twice. if i close the activity and reopen the activity i get the error this is the error : E/AndroidRuntime: FATAL EXCEPTION: AsyncTask #1 …
0
votes
1 answer

Bitmap take too much time to load

I am trying to implement load bitmap in ImageView, but it is taking too much time to load. I have also used ImageLoader but it is only supports for url, it is not supports for bitmap, so how can I show bitmap instantly? Please help to solve it! Show…
user5418227
0
votes
2 answers

ImageLoader caching and showing old images

I am using ImageLoader to display images in my ImageView. But it is showing cached images and displaying old ones. How to clear the cache? Any help will be greatly appreciated... import java.io.File; import java.io.FileInputStream; import…
Jas
  • 3,207
  • 2
  • 15
  • 45
-1
votes
1 answer

issue loading image using facebook's Fresco image loading library when imagepath contains special chars like %

I am using Fresco to load image in our app but in case where imagepath contains any special symbols or chars like % or #, it doesn't load image. imagepath for my image is : /storage/emulated/0/Pictures/OGQ/Richard Walker_Stairway To…
Ujjwal
  • 346
  • 4
  • 11
-2
votes
1 answer

ImageLoader NullPointerException

I am reciving a nullpointerexpression when I try to get a Bitmap. ImageLoader imageLoader = ImageLoader.getInstance(); Bitmap bmp = null; bmp = imageLoader.loadImageSync("http://i.imgur.com/tx41HBE.jpg"); The bmp variable is null after calling the…
1
2