Questions tagged [universal-image-loader]

Universal Image Loader is the open source library for Android which aims to provide a reusable instrument for asynchronous image loading, caching and displaying.

Project on GitHub

Features

  • Multithread image loading
  • Possibility of wide tuning ImageLoader's configuration (thread pool size, HTTP options, memory and disc cache, display image options, and others)
  • Possibility of image caching in memory and/or on device's file sysytem (or SD card)
  • Possibility to "listen" loading process
  • Possibility to customize every display image call with separated options
  • Widget support
865 questions
0
votes
1 answer

universal image loader display images from SD card

my goal is to display images(thumbnails) from SD card in smooth list so i edited the demo sample(loading images from web to gridview) a bit to load the images from SD card to see the performance , and when the images are not cached (first time) it's…
user1097275
  • 137
  • 2
  • 9
0
votes
1 answer

Setting onclicklistener to multi viewpager (gallery widget alternative)

I am currently trying to implement a Gallery-like view. Since it has been deprecated i have been trying to find alternatives. I have successfully experimented with Universal Image Loader's image view pager with Dave Smith's implementation of view…
0
votes
1 answer

wrong arguments were passed to displayImage method in universal-Image

I used this library lots of time. But I get an exception from Eclipse that the title name. Codes are here; public class HaberDetay extends Activity { private HaberlerItems haberitem = null; private ImageLoader imageloader; private ImageView…
emreturka
  • 846
  • 3
  • 18
  • 44
0
votes
1 answer

NullPointerException accessing Intent Bundle

I have this code on my app which have 3 tab with 3 different Activity. One is this but i cant resolve this problem: package com.example.myapplication; import android.content.Intent; import android.graphics.Bitmap; import android.os.Bundle; import…
0
votes
1 answer

Using Universal ImageLoader

If I write this code: ImageLoader imageLoader = ImageLoader.getInstance(); I get this error: 06-16 16:04:23.729: E/AndroidRuntime(13889): java.lang.NoClassDefFoundError: com.nostra13.universalimageloader.core.ImageLoader I've added…
Nikolay
  • 344
  • 1
  • 15
0
votes
1 answer

How to make universal image loader get image from sd card dynamically

i get an example from here https://github.com/nostra13/Android-Universal-Image-Loader In the Constants.java is for the image source link. The thing that i want is scan the specific folder in sdcard, then get all image url in dynamic. Not one by one…
cj7
  • 15
  • 2
  • 3
0
votes
3 answers

Load image into TextView's background

I have the following TextView layout: I inflate this layout in code, and…
alterionisto
  • 77
  • 1
  • 8
0
votes
2 answers

How to load image (from sdcard) faster in thumbnail size?

I want to make a grid view to show thumbnail of photos in folder in sdcard. Image resolution is 3264x2448. I use Notras Universal Image Loader lib with config: DisplayImageOptions options = new DisplayImageOptions.Builder() …
VAdaihiep
  • 521
  • 9
  • 19
0
votes
1 answer

Universal Image Loader throws UnsupportedOperationException. Not sure why

Everything is working great it would seem, however, UIL keeps throwing this exception. They are not fatal and are not crashing the app. My thoughts are that its just what UIL spits out when it can't find the image I'm sending it via a web uri. Here…
wapples
  • 183
  • 2
  • 12
0
votes
1 answer

getApplicationContext() on Universal Image Gallery is Undefined?

I am trying to load some images from the array and the following is my schedule adapter. Just getting undefined context. Not sure what to do ? Also no images are being loaded public class Schedule_ArrayAdapter extends ArrayAdapter { private…
Sam
  • 350
  • 5
  • 18
0
votes
0 answers

Universal Image Loader with URLs from JSON

I am pulling 4 different items from JSON and storing them in a Map and would like to take one of those items (and img URL) and use that in the Universal Image Adapter GridView option. Is this possible? The example on GitHub utilizes a static String…
Shan
  • 3
  • 2
0
votes
2 answers

imageview in gridview wrong size, after replacing loading placeholder

I'm using gridview, to show a 2 column list of images. I am using universal image loader to get the images from database, which works great, but as soon as the image is loaded, and the "loading image" placeholder is replaced, the size gets shrinked…
Tamas
  • 1,765
  • 1
  • 16
  • 26
0
votes
1 answer

how to translate passing a listener in a java example to .net in monodroid

Using a monodroid java bindings project of Android Universal Image Library, how would I translate this from java to .net? Can I pass it in a lambda for the loading listener? The Java code example // Load image, decode it to Bitmap and return Bitmap…
MonkeyBonkey
  • 46,433
  • 78
  • 254
  • 460
0
votes
1 answer

how to alias or smooth scaled down image in android

I'm setting a larger image to a ImageView in Android using the Android Universal ImageLoader. However, I'm getting jagged or non-smooth edges when the image gets scaled down. Is there an option I can set in the imageview to have a smoother edges…
MonkeyBonkey
  • 46,433
  • 78
  • 254
  • 460
0
votes
1 answer

GridView not displaying if called not from button

I'm new to Java, Android etc. I have a problem that I am not able to figure out. I have GridView that is populated by an ImageAdapter based on UniversalImageLoader. When I click a button to launch method, public void buttonsearch(View…
Rezon
  • 1
  • 2