Home | History | Annotate | Download | only in contacts

Lines Matching full:bitmap

24 import android.graphics.Bitmap;
80 SoftReference<Bitmap> bitmapRef;
166 // Null bitmap reference means that database contains no bytes for the photo
172 Bitmap bitmap = holder.bitmapRef.get();
173 if (bitmap != null) {
174 view.setImageBitmap(bitmap);
178 // Null bitmap means that the soft reference was released by the GC
183 // The bitmap has not been loaded - should display the placeholder image.
288 * Stores the supplied bitmap in cache.
299 Bitmap bitmap = BitmapFactory.decodeByteArray(bytes, 0, bytes.length, null);
300 holder.bitmapRef = new SoftReference<Bitmap>(bitmap);