Merge change 26997 into eclair

* changes:
  Fix issue 2128896 The thumbnail generated after picture capture with max zoom is overlapped with previous thumbnail.
This commit is contained in:
Android (Google) Code Review
2009-09-25 00:21:15 -04:00

View File

@@ -245,7 +245,7 @@ public class ThumbnailUtil {
}
Matrix matrix = new Matrix();
matrix.setScale(scale, scale);
Bitmap miniThumbnail = transform(matrix, source, width, height, false, recycle);
Bitmap miniThumbnail = transform(matrix, source, width, height, true, recycle);
return miniThumbnail;
}