1 package com.bumptech.glide.load.engine.bitmap_recycle; 2 3 import android.graphics.Bitmap; 4 5 interface LruPoolStrategy { put(Bitmap bitmap)6 void put(Bitmap bitmap); get(int width, int height, Bitmap.Config config)7 Bitmap get(int width, int height, Bitmap.Config config); removeLast()8 Bitmap removeLast(); logBitmap(Bitmap bitmap)9 String logBitmap(Bitmap bitmap); logBitmap(int width, int height, Bitmap.Config config)10 String logBitmap(int width, int height, Bitmap.Config config); getSize(Bitmap bitmap)11 int getSize(Bitmap bitmap); 12 } 13