Back to project page scala1_android.
The source code is released under:
Copyright (c) 2012, Magnetic Bear Studios Inc. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditio...
If you think the Android project scala1_android 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; // ww w. ja v a 2s .co m import android.graphics.drawable.Drawable; public final class UrlImageCache extends SoftReferenceHashTable<String, Drawable> { private static UrlImageCache mInstance = new UrlImageCache(); public static UrlImageCache getInstance() { return mInstance; } private UrlImageCache() { } }