HomeSort by relevance Sort by last modified time
    Searched full:fulloptions (Results 1 - 1 of 1) sorted by null

  /frameworks/base/media/java/android/media/
ThumbnailUtils.java 491 BitmapFactory.Options fullOptions = new BitmapFactory.Options();
505 fullOptions.inJustDecodeBounds = true;
506 BitmapFactory.decodeFile(filePath, fullOptions);
507 fullOptions.inSampleSize = computeSampleSize(fullOptions, targetSize, maxPixels);
508 fullThumbWidth = fullOptions.outWidth / fullOptions.inSampleSize;
523 fullOptions.inJustDecodeBounds = false;
524 sizedThumbBitmap.mBitmap = BitmapFactory.decodeFile(filePath, fullOptions);

Completed in 108 milliseconds