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

/packages/apps/Launcher3/WallpaperPicker/src/com/android/launcher3/
H A DSavedWallpaperImages.java52 public SavedWallpaperTile(int dbId, File target, Drawable thumb) { argument
53 super(target, thumb);
90 Bitmap thumb = BitmapFactory.decodeFile(file.getAbsolutePath());
91 if (thumb != null) {
94 new BitmapDrawable(thumb)));
H A DWallpaperPickerActivity.java181 Bitmap thumb = createThumbnail(
183 a.getSavedImages().writeImage(thumb, imageBytes);
201 public FileWallpaperInfo(File target, Drawable thumb) { argument
203 mThumb = thumb;
229 public ResourceWallpaperInfo(Resources res, int resId, Drawable thumb) { argument
232 mThumb = thumb;
269 public DefaultWallpaperInfo(Drawable thumb) { argument
270 mThumb = thumb;
691 Bitmap thumb = null;
695 thumb
1149 createImageTileView(LayoutInflater layoutInflater, 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/WallpaperPicker/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 138 milliseconds