22 Kasım 2016 Salı

LruCache Sınıfı

constructor
Şöyle yaparız.
LruCache<String, Bitmap> cache = new LruCache<String, Bitmap> (30);
get metodu
Şöyle yaparız.
String url = ...;
Bitmap bitmap = cache.get (url);
put metodu
Şöyle yaparız.
String url = ...; 
Bitmap bitmap = ...;cache.put (url,bitmap);

Hiç yorum yok:

Yorum Gönder