Searched defs:previewSize (Results 1 - 4 of 4) sorted by relevance

/packages/apps/Launcher3/WallpaperPicker/src/com/android/launcher3/
H A DDrawableTileSource.java40 public DrawableTileSource(Context context, Drawable d, int previewSize) { argument
43 mPreviewSize = Math.min(previewSize, MAX_PREVIEW_SIZE);
/packages/apps/Gallery2/src/com/android/photos/
H A DBitmapRegionTileSource.java67 public BitmapRegionTileSource(Context context, String path, int previewSize, int rotation) { argument
81 if (previewSize != 0) {
82 previewSize = Math.min(previewSize, MAX_PREVIEW_SIZE);
86 Bitmap preview = decodePreview(path, previewSize);
/packages/apps/Camera2/src/com/android/camera/tinyplanet/
H A DTinyPlanetFragment.java261 private Bitmap createPaddedSourceImage(Uri sourceImageUri, boolean previewSize) { argument
273 int size = previewSize ? getDisplaySize() : sourceBitmap.getWidth();
/packages/apps/Launcher3/WallpaperPicker/src/com/android/photos/
H A DBitmapRegionTileSource.java165 public BitmapSource(int previewSize) { argument
166 mPreviewSize = previewSize;
184 int previewSize = Math.min(mPreviewSize, MAX_PREVIEW_SIZE);
189 float scale = (float) previewSize / Math.max(width, height);
226 public FilePathBitmapSource(String path, int previewSize) { argument
227 super(previewSize);
261 public UriBitmapSource(Context context, Uri uri, int previewSize) { argument
262 super(previewSize);
326 public ResourceBitmapSource(Resources res, int resId, int previewSize) { argument
327 super(previewSize);
[all...]

Completed in 488 milliseconds