Back to project page UrlImageViewHelper.
The source code is released under:
Apache License
If you think the Android project UrlImageViewHelper listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.koushikdutta.urlimageviewhelper; //from ww w . j av a 2 s . c om import android.graphics.drawable.Drawable; public final class DrawableCache extends SoftReferenceHashTable<String, Drawable> { private static DrawableCache mInstance = new DrawableCache(); public static DrawableCache getInstance() { return mInstance; } private DrawableCache() { } }