Searched refs:thumbnail (Results 26 - 40 of 40) sorted by relevance

12

/packages/apps/Browser/src/com/android/browser/widget/
H A DBookmarkThumbnailWidgetService.java255 Bitmap thumbnail = null, favicon = null;
259 thumbnail = BitmapFactory.decodeByteArray(
261 views.setImageViewBitmap(R.id.thumb, thumbnail);
/packages/apps/Launcher3/WallpaperPicker/src/com/android/launcher3/
H A DWallpaperPickerActivity.java746 FrameLayout thumbnail = (FrameLayout) adapter.getView(i, null, parent);
747 parent.addView(thumbnail, i);
749 thumbnail.setTag(info);
750 info.setView(thumbnail);
752 addLongPressHandler(thumbnail);
754 thumbnail.setOnClickListener(mThumbnailOnClickListener);
852 // Load the thumbnail
883 Log.e(TAG, "Error loading thumbnail for uri=" + uri);
955 // it is a thumbnail
959 File thumbnail
[all...]
/packages/apps/Browser/src/com/android/browser/
H A DAddBookmarkPage.java76 // Place on an edited bookmark to remove the saved thumbnail
763 Bitmap thumbnail = invalidateThumbnail ? null
771 title, thumbnail, mCurrentFolder);
918 Bitmap thumbnail;
921 thumbnail = (Bitmap) mMap.getParcelable(
926 thumbnail = null;
948 bundle.putParcelable(BrowserContract.Bookmarks.THUMBNAIL, thumbnail);
/packages/apps/Camera2/src/com/android/camera/data/
H A DVideoItem.java196 .thumbnail(mGlideManager.loadMediaStoreThumb(mData.getUri(),
/packages/apps/LegacyCamera/src/com/android/camera/ui/
H A DSharePopup.java51 // A popup window that contains a big thumbnail and a list of apps to share.
68 // A rotated view that contains the thumbnail and the play icon.
121 mThumbnail = (ImageView) sharePopup.findViewById(R.id.thumbnail);
135 // Show play button if this is a video thumbnail.
169 // Calculate the width and the height of the thumbnail. Reserve the
/packages/apps/Camera2/src/com/android/camera/exif/
H A DExifInterface.java1729 * Returns the thumbnail from IFD1 as a bitmap, or null if none exists.
1731 * @return the thumbnail as a bitmap.
1744 * Returns the thumbnail from IFD1 as a byte array, or null if none exists.
1748 * @return the thumbnail as a byte array.
1760 * Returns the thumbnail if it is jpeg compressed, or null if none exists.
1762 * @return the thumbnail as a byte array.
1769 * Check if thumbnail is compressed.
1771 * @return true if the thumbnail is compressed.
1778 * Check if thumbnail exists.
1780 * @return true if a compressed thumbnail exist
[all...]
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/exif/
H A DExifInterface.java1750 * Returns the thumbnail from IFD1 as a bitmap, or null if none exists.
1752 * @return the thumbnail as a bitmap.
1765 * Returns the thumbnail from IFD1 as a byte array, or null if none exists.
1769 * @return the thumbnail as a byte array.
1781 * Returns the thumbnail if it is jpeg compressed, or null if none exists.
1783 * @return the thumbnail as a byte array.
1790 * Check if thumbnail is compressed.
1792 * @return true if the thumbnail is compressed.
1799 * Check if thumbnail exists.
1801 * @return true if a compressed thumbnail exist
[all...]
/packages/apps/Launcher3/WallpaperPicker/src/com/android/gallery3d/exif/
H A DExifInterface.java1750 * Returns the thumbnail from IFD1 as a bitmap, or null if none exists.
1752 * @return the thumbnail as a bitmap.
1765 * Returns the thumbnail from IFD1 as a byte array, or null if none exists.
1769 * @return the thumbnail as a byte array.
1781 * Returns the thumbnail if it is jpeg compressed, or null if none exists.
1783 * @return the thumbnail as a byte array.
1790 * Check if thumbnail is compressed.
1792 * @return true if the thumbnail is compressed.
1799 * Check if thumbnail exists.
1801 * @return true if a compressed thumbnail exist
[all...]
/packages/apps/Messaging/src/com/android/messaging/util/exif/
H A DExifInterface.java1750 * Returns the thumbnail from IFD1 as a bitmap, or null if none exists.
1752 * @return the thumbnail as a bitmap.
1765 * Returns the thumbnail from IFD1 as a byte array, or null if none exists.
1769 * @return the thumbnail as a byte array.
1781 * Returns the thumbnail if it is jpeg compressed, or null if none exists.
1783 * @return the thumbnail as a byte array.
1790 * Check if thumbnail is compressed.
1792 * @return true if the thumbnail is compressed.
1799 * Check if thumbnail exists.
1801 * @return true if a compressed thumbnail exist
[all...]
/packages/apps/Gallery/src/com/android/camera/
H A DGalleryPicker.java337 // and generated thumbnail bitmaps for each item. We do this instead of
338 // generating thumbnail bitmaps in checkImageList() and checkBucketIds()
340 // the thumb bitmaps. (Generating thumbnail bitmaps takes some time.)
797 // The thumbnail bitmap is set by setThumbBitmap() later because we want
800 public Bitmap mThumbBitmap; // the thumbnail bitmap for the image list
924 (GalleryPickerItem) v.findViewById(R.id.thumbnail);
/packages/apps/LegacyCamera/src/com/android/camera/panorama/
H A DPanoramaActivity.java309 // If the activity is paused, save the thumbnail to the file here.
312 // Set the thumbnail bitmap here because mThumbnailView must be accessed
316 // Share popup may still have the reference to the old thumbnail. Clear it.
718 mThumbnailView = (RotateImageView) findViewById(R.id.thumbnail);
809 // Load the thumbnail from the disk.
861 // Create a thumbnail whose width or height is equal or bigger
/packages/apps/LegacyCamera/src/com/android/camera/
H A DCamera.java156 // A popup window that contains a bigger thumbnail and a list of apps to share.
158 // The bitmap of the last captured picture thumbnail and the URI of the
161 // An imageview showing showing the last captured picture thumbnail.
372 if (!mIsImageCaptureIntent) { // no thumbnail in image capture intent
417 // Load the thumbnail from the disk.
863 // too, because we want to show the thumbnail of the last image taken.
986 // Share popup may still have the reference to the old thumbnail. Clear it.
1002 // thumbnail for this image. Because we'll soon replace it
1003 // with the thumbnail for some image later in the queue.
1007 // Create a thumbnail whos
[all...]
H A DVideoCamera.java161 // A popup window that contains a bigger thumbnail and a list of apps to share.
163 // The bitmap of the last captured video thumbnail and the URI of the
166 // An imageview showing showing the last captured picture thumbnail.
882 updateThumbnailButton(); // Update the last video thumbnail.
1641 // Share popup may still have the reference to the old thumbnail. Clear it.
1657 // MetadataRetriever already rotates the thumbnail. We should rotate
1701 // This is asynchronous, so we can't add to media store now because thumbnail
1756 mThumbnailView = (RotateImageView) findViewById(R.id.thumbnail);
1759 // Load the thumbnail from the disk.
2416 // Create a thumbnail whos
[all...]
/packages/apps/Camera2/src/com/android/camera/
H A DCameraActivity.java1189 public void startPostCaptureAnimation(Bitmap thumbnail) { argument
1277 // rotation info for the thumbnail.
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
H A DContactsProvider2Test.java6594 byte[] thumbnail = loadPhotoFromResource(R.drawable.earth_small, PhotoSize.THUMBNAIL);
6603 values.put(Photo.PHOTO, thumbnail);
6609 thumbnail, mResolver.openInputStream(photoLookupUriWithId));
6611 thumbnail, mResolver.openInputStream(photoLookupUriWithoutId));
6622 // Check the thumbnail.
6627 // display photo, this returns the thumbnail image itself, which was compressed at
6806 // Photo being inserted is larger than a thumbnail, so it will be stored as a file.
6814 // Check that the photo URI differs from the thumbnail.
6829 // Photo being inserted is a thumbnail, so it will only be stored in a BLOB. The photo URI
6830 // will fall back to the thumbnail UR
[all...]

Completed in 772 milliseconds

12