Lines Matching refs:thumb

183                     Bitmap thumb = createThumbnail(
185 a.getSavedImages().writeImage(thumb, imageBytes);
203 public FileWallpaperInfo(File target, Drawable thumb) {
205 mThumb = thumb;
231 public ResourceWallpaperInfo(Resources res, int resId, Drawable thumb) {
234 mThumb = thumb;
271 public DefaultWallpaperInfo(Drawable thumb) {
272 mThumb = thumb;
693 Bitmap thumb = null;
697 thumb = MediaStore.Images.Thumbnails.getThumbnail(getContentResolver(),
702 return thumb;
861 protected void onPostExecute(Bitmap thumb) {
862 if (!isCancelled() && thumb != null) {
863 image.setImageBitmap(thumb);
955 Bitmap thumb = BitmapFactory.decodeFile(thumbnail.getAbsolutePath());
956 if (thumb != null) {
957 bundled.add(new FileWallpaperInfo(file, new BitmapDrawable(thumb)));
1021 Bitmap thumb = null;
1024 thumb = BitmapFactory.decodeFile(defaultThumbFile.getAbsolutePath());
1030 thumb = createThumbnail(
1032 if (thumb != null) {
1033 defaultWallpaperExists = saveDefaultWallpaperThumb(thumb);
1037 return new ResourceWallpaperInfo(sysRes, resId, new BitmapDrawable(thumb));
1045 Bitmap thumb = null;
1048 thumb = BitmapFactory.decodeFile(defaultThumbFile.getAbsolutePath());
1056 thumb = Bitmap.createBitmap(
1058 Canvas c = new Canvas(thumb);
1063 if (thumb != null) {
1064 defaultWallpaperExists = saveDefaultWallpaperThumb(thumb);
1068 return new DefaultWallpaperInfo(new BitmapDrawable(thumb));
1143 Drawable thumb = getItem(position).mThumb;
1144 if (thumb == null) {
1147 return createImageTileView(mLayoutInflater, convertView, parent, thumb);
1152 View convertView, ViewGroup parent, Drawable thumb) {
1165 if (thumb != null) {
1166 image.setImageDrawable(thumb);
1167 thumb.setDither(true);