Searched defs:thumb (Results 1 - 7 of 7) sorted by relevance

/packages/apps/Launcher3/src/com/android/launcher3/
H A DSavedWallpaperImages.java55 public SavedWallpaperTile(int dbId, Drawable thumb) { argument
57 mThumb = thumb;
113 Bitmap thumb = BitmapFactory.decodeFile(file.getAbsolutePath());
114 if (thumb != null) {
115 mImages.add(new SavedWallpaperTile(result.getInt(0), new BitmapDrawable(thumb)));
H A DWallpaperPickerActivity.java146 Bitmap thumb = createThumbnail(
148 a.getSavedImages().writeImage(thumb, imageBytes);
168 public ResourceWallpaperInfo(Resources res, int resId, Drawable thumb) { argument
171 mThumb = thumb;
492 Bitmap thumb = null;
495 thumb = MediaStore.Images.Thumbnails.getThumbnail(getContentResolver(),
499 return thumb;
637 Bitmap thumb = createThumbnail(defaultSize, this, uri, null, null, 0, rotation, false);
638 if (thumb != null) {
639 image.setImageBitmap(thumb);
839 createImageTileView(LayoutInflater layoutInflater, int position, View convertView, ViewGroup parent, Drawable thumb) argument
[all...]
/packages/apps/MusicFX/src/com/android/musicfx/seekbar/
H A DAbsSeekBar.java72 Drawable thumb = a.getDrawable(com.android.internal.R.styleable.SeekBar_thumb);
73 setThumb(thumb); // will guess mThumbOffset if thumb != null...
89 * Sets the thumb that will be drawn at the end of the progress meter within the SeekBar.
91 * If the thumb is a valid drawable (i.e. not null), half its width will be
92 * used as the new thumb offset (@see #setThumbOffset(int)).
94 * @param thumb Drawable representing the thumb
96 public void setThumb(Drawable thumb) { argument
101 if (mThumb != null && thumb !
308 setThumbPos(int w, int h, Drawable thumb, float scale, int gap) argument
[all...]
/packages/apps/Camera2/src/com/android/camera/exif/
H A DExifInterface.java1756 byte[] thumb = mData.getCompressedThumbnail();
1757 return BitmapFactory.decodeByteArray(thumb, 0, thumb.length);
1814 * @param thumb a byte array containing a jpeg compressed image.
1817 public boolean setCompressedThumbnail(byte[] thumb) { argument
1819 mData.setCompressedThumbnail(thumb);
1827 * @param thumb a bitmap to compress to a jpeg thumbnail.
1830 public boolean setCompressedThumbnail(Bitmap thumb) { argument
1832 if (!thumb.compress(Bitmap.CompressFormat.JPEG, 90, thumbnail)) {
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/exif/
H A DExifInterface.java1756 byte[] thumb = mData.getCompressedThumbnail();
1757 return BitmapFactory.decodeByteArray(thumb, 0, thumb.length);
1814 * @param thumb a byte array containing a jpeg compressed image.
1817 public boolean setCompressedThumbnail(byte[] thumb) { argument
1819 mData.setCompressedThumbnail(thumb);
1827 * @param thumb a bitmap to compress to a jpeg thumbnail.
1830 public boolean setCompressedThumbnail(Bitmap thumb) { argument
1832 if (!thumb.compress(Bitmap.CompressFormat.JPEG, 90, thumbnail)) {
/packages/apps/Launcher3/src/com/android/gallery3d/exif/
H A DExifInterface.java1756 byte[] thumb = mData.getCompressedThumbnail();
1757 return BitmapFactory.decodeByteArray(thumb, 0, thumb.length);
1814 * @param thumb a byte array containing a jpeg compressed image.
1817 public boolean setCompressedThumbnail(byte[] thumb) { argument
1819 mData.setCompressedThumbnail(thumb);
1827 * @param thumb a bitmap to compress to a jpeg thumbnail.
1830 public boolean setCompressedThumbnail(Bitmap thumb) { argument
1832 if (!thumb.compress(Bitmap.CompressFormat.JPEG, 90, thumbnail)) {
/packages/apps/Mms/src/com/android/mms/exif/
H A DExifInterface.java1756 byte[] thumb = mData.getCompressedThumbnail();
1757 return BitmapFactory.decodeByteArray(thumb, 0, thumb.length);
1814 * @param thumb a byte array containing a jpeg compressed image.
1817 public boolean setCompressedThumbnail(byte[] thumb) { argument
1819 mData.setCompressedThumbnail(thumb);
1827 * @param thumb a bitmap to compress to a jpeg thumbnail.
1830 public boolean setCompressedThumbnail(Bitmap thumb) { argument
1832 if (!thumb.compress(Bitmap.CompressFormat.JPEG, 90, thumbnail)) {

Completed in 264 milliseconds