abbyrockss

Untitled

May 8th, 2014
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1.  
  2. BitmapFactory.decodeFile(list.get(i));
  3. options.inJustDecodeBounds = false;
  4.  
  5. if (myBitmap != null) {
  6. myBitmap.recycle();
  7. myBitmap = null;
  8. }
  9. Bitmap decodedSampleBitmap = BitmapFactory.decodeFile(list
  10. .get(i));
  11. myBitmap = Bitmap.createScaledBitmap(decodedSampleBitmap,
  12. width, height, true);
  13. if (decodedSampleBitmap != myBitmap)
  14. decodedSampleBitmap.recycle();
  15. decodedSampleBitmap = null;
Advertisement
Add Comment
Please, Sign In to add comment