Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to display facebook Newsfeed in my application. I got the urls of the images and I tried to display them by using the ImageLoader class , MemoryCache class. I am getting OOM Exception because of large Images.

I found in this link that using SoftReference or WeakReference will not handle large bitmaps.
To handle this I need to implement Different classes rather than using past ImageLoader,MemoryCache,FileCache classes.

Where can I find those classes?And How to implement them.

import java.lang.ref.SoftReference;
import java.util.HashMap;
import android.graphics.Bitmap;

public class MemoryCache {
    private HashMap<String, SoftReference<Bitmap>> cache=new HashMap<String, SoftReference<Bitmap>>();

    public Bitmap get(String id){
        if(!cache.containsKey(id))
            return null;
        SoftReference<Bitmap> ref=cache.get(id);
        return ref.get();
    }

    public void put(String id, Bitmap bitmap){
        cache.put(id, new SoftReference<Bitmap>(bitmap));
    }

    public void clear() {
        cache.clear();
    }
}

please help

share|improve this question
2  
possible duplicate of Bitmap recycle with largeHeap enabled – Jan Hančič Jan 8 at 10:46

1 Answer

have a look to this smple project link

it is refer as lazy loading of images

share|improve this answer
I used the same classes in my application,but the thing is I am getting large Images from facebook api and I want to display them as it is,at this time I am getting OOM Exception because of Large Bitmaps.Is there any way to display Large Bitmaps ? – user1891910 Jan 8 at 7:32
after using lazy loading still exception occurs? – Pankaj Singh Jan 8 at 7:34
I am using the above MemoryCache class,did I need to change that?please find the edited post – user1891910 Jan 8 at 7:42

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.