-
Notifications
You must be signed in to change notification settings - Fork 504
07 Bitmap回收
HuanTanSheng edited this page Dec 7, 2017
·
1 revision
不用考虑Bitmap是否为null或是否已回收
/**
* 回收bitmap
*
* @param bitmap 要回收的bitmap
*/
EasyPhotos.recycle(Bitmap bitmap);
/**
* 回收bitmap数组中的所有图片
*
* @param bitmaps 要回收的bitmap数组
*/
EasyPhotos.recycle(Bitmap... bitmaps);
/**
* 回收bitmap集合中的所有图片
*
* @param bitmaps 要回收的bitmap集合
*/
EasyPhotos.recycle(List<Bitmap> bitmaps);