HomeSort by relevance Sort by last modified time
    Searched defs:thumbnail (Results 1 - 19 of 19) sorted by null

  /development/samples/devbytes/animation/ActivityAnimations/src/com/example/android/activityanim/
PictureData.java 24 Bitmap thumbnail; field in class:PictureData
26 public PictureData(int resourceId, String description, Bitmap thumbnail) {
29 this.thumbnail = thumbnail;
BitmapUtils.java 64 Bitmap thumbnail = getThumbnail(bitmap, 200); local
66 pictures.add(new PictureData(resourceId, description, thumbnail));
85 * Create and return a thumbnail image given the original source bitmap and a max
101 Bitmap thumbnail = Bitmap.createScaledBitmap(original, scaledWidth, scaledHeight, true); local
103 return thumbnail;
  /development/samples/devbytes/animation/WindowAnimations/src/com/example/android/windowanimations/
WindowAnimations.java 46 final ImageView thumbnail = (ImageView) findViewById(R.id.thumbnail); local
90 // representations. Here, we scale up from a thumbnail image of the final sub-activity
91 thumbnail.setOnClickListener(new View.OnClickListener() {
94 BitmapDrawable drawable = (BitmapDrawable) thumbnail.getDrawable();
98 thumbnail, bm, 0, 0).toBundle();
  /developers/samples/android/content/SharingShortcuts/Application/src/main/java/com/example/android/sharingshortcuts/
MainActivity.java 50 // Name of the file to use for the thumbnail image
88 // (Optional) if you want a preview thumbnail, create a content URI and add it
90 ClipData thumbnail = getClipDataThumbnail(); local
91 if (thumbnail != null) {
92 sharingIntent.setClipData(thumbnail);
100 * Get ClipData thumbnail object that needs to be passed in the Intent.
109 * @return thumbnail ClipData object to set in the sharing Intent.
  /external/glide/library/src/main/java/com/bumptech/glide/
BitmapRequestBuilder.java 121 public BitmapRequestBuilder<ModelType, TranscodeType> thumbnail(float sizeMultiplier) { method in class:BitmapRequestBuilder
122 super.thumbnail(sizeMultiplier);
127 * Loads and displays the {@link android.graphics.Bitmap} retrieved by the given thumbnail request if it finishes
128 * before this request. Best used for loading thumbnail {@link Bitmap}s that are smaller and will be loaded more
133 * @see #thumbnail(float)
136 * Note - Any options on the main request will not be passed on to the thumbnail request. For example, if
137 * you want an animation to occur when either the full {@link android.graphics.Bitmap} loads or the thumbnail
138 * loads, you need to call {@link #animate(int)} on both the thumb and the full request. For a simpler thumbnail
139 * option where these options are applied to the humbnail as well, see {@link #thumbnail(float)}.
143 * Only the thumbnail call on the main request will be obeyed, recursive calls to this method are ignored
149 public BitmapRequestBuilder<ModelType, TranscodeType> thumbnail(BitmapRequestBuilder<?, TranscodeType> method in class:BitmapRequestBuilder
431 public BitmapRequestBuilder<ModelType, TranscodeType> thumbnail( method in class:BitmapRequestBuilder
    [all...]
DrawableRequestBuilder.java 54 * Loads and displays the {@link GlideDrawable} retrieved by the given thumbnail request if it finishes before this
55 * request. Best used for loading thumbnail {@link GlideDrawable}s that are smaller and will be loaded more quickly
60 * @see #thumbnail(float)
63 * Note - Any options on the main request will not be passed on to the thumbnail request. For example, if
64 * you want an animation to occur when either the full {@link GlideDrawable} loads or the thumbnail loads,
65 * you need to call {@link #animate(int)} on both the thumb and the full request. For a simpler thumbnail
66 * option where these options are applied to the humbnail as well, see {@link #thumbnail(float)}.
70 * Only the thumbnail call on the main request will be obeyed, recursive calls to this method are ignored.
73 * @param thumbnailRequest The request to use to load the thumbnail.
76 public DrawableRequestBuilder<ModelType> thumbnail( method in class:DrawableRequestBuilder
86 public DrawableRequestBuilder<ModelType> thumbnail( method in class:DrawableRequestBuilder
96 public DrawableRequestBuilder<ModelType> thumbnail(float sizeMultiplier) { method in class:DrawableRequestBuilder
    [all...]
GifRequestBuilder.java 48 public GifRequestBuilder<ModelType> thumbnail(GenericRequestBuilder<?, ?, ?, GifDrawable> thumbnailRequest) { method in class:GifRequestBuilder
49 super.thumbnail(thumbnailRequest);
54 * Loads and displays the GIF retrieved by the given thumbnail request if it finishes before this
55 * request. Best used for loading thumbnail GIFs that are smaller and will be loaded more quickly
60 * @see #thumbnail(float)
63 * Note - Any options on the main request will not be passed on to the thumbnail request. For example, if
64 * you want an animation to occur when either the full GIF loads or the thumbnail loads,
65 * you need to call {@link #animate(int)} on both the thumb and the full request. For a simpler thumbnail
66 * option where these options are applied to the humbnail as well, see {@link #thumbnail(float)}.
70 * Only the thumbnail call on the main request will be obeyed, recursive calls to this method are ignored
76 public GifRequestBuilder<ModelType> thumbnail(GifRequestBuilder<?> thumbnailRequest) { method in class:GifRequestBuilder
85 public GifRequestBuilder<ModelType> thumbnail(float sizeMultiplier) { method in class:GifRequestBuilder
    [all...]
GenericRequestBuilder.java 112 * Loads and displays the resource retrieved by the given thumbnail request if it finishes before this request.
113 * Best used for loading thumbnail resources that are smaller and will be loaded more quickly than the full size
117 * @see #thumbnail(float)
120 * Recursive calls to thumbnail are supported.
123 * @param thumbnailRequest The request to use to load the thumbnail.
126 public GenericRequestBuilder<ModelType, DataType, ResourceType, TranscodeType> thumbnail( method in class:GenericRequestBuilder
135 * by the given size multiplier. If the thumbnail load completes before the fullsize load, the thumbnail will
136 * be shown. If the thumbnail load completes afer the fullsize load, the thumbnail will not be shown
158 public GenericRequestBuilder<ModelType, DataType, ResourceType, TranscodeType> thumbnail( method in class:GenericRequestBuilder
    [all...]
  /external/piex/src/
piex_types.h 80 // Optional data to find the preview and thumbnail image to handle them
81 // correctly. A thumbnail is typically 160x120 pixel small and usually
85 Image thumbnail; member in struct:piex::PreviewImageData
piex.cc 123 // Reads the jpeg compressed thumbnail information.
133 preview_image_data->thumbnail = thumbnail_data.thumbnail;
253 &preview_image_data->thumbnail.offset,
254 &preview_image_data->thumbnail.length)) {
435 // Find the jpeg compressed thumbnail and preview image.
437 Image thumbnail; local
443 thumbnail = temp_image;
452 // Try to find the largest thumbnail/preview.
454 if (temp_image > thumbnail) {
    [all...]
  /frameworks/av/media/libmedia/
IMediaMetadataRetriever.cpp 171 sp<IMemory> getImageAtIndex(int index, int colorFormat, bool metaOnly, bool thumbnail)
173 ALOGV("getImageAtIndex: index %d, colorFormat(%d) metaOnly(%d) thumbnail(%d)",
174 index, colorFormat, metaOnly, thumbnail);
180 data.writeInt32(thumbnail);
386 bool thumbnail = (data.readInt32() != 0); local
387 ALOGV("getImageAtIndex: index(%d), colorFormat(%d), metaOnly(%d), thumbnail(%d)",
388 index, colorFormat, metaOnly, thumbnail);
392 sp<IMemory> bitmap = getImageAtIndex(index, colorFormat, metaOnly, thumbnail);
  /external/ImageMagick/MagickCore/
montage.c 352 *thumbnail;
423 thumbnail=NewImageList();
433 thumbnail=ThumbnailImage(image,geometry.width,geometry.height,exception);
434 if (thumbnail == (Image *) NULL)
436 image_list[i]=thumbnail;
448 if (thumbnail == (Image *) NULL)
347 *thumbnail; local
    [all...]
effect.c 2286 *thumbnail; local
    [all...]
  /frameworks/av/media/extractors/mp4/
ItemTable.cpp 536 // mark thumbnail image as hidden, these can be retrieved if the client
537 // request thumbnail explicitly, but won't be exposed as displayables.
548 ALOGV("Image item id %d uses thumbnail item id %d", mRefs[i], mItemId);
1533 const ImageItem &thumbnail = mItemIdToItemMap[thumbItemIndex]; local
    [all...]
  /external/ImageMagick/Magick++/lib/
Image.cpp 4642 void Magick::Image::thumbnail(const Geometry &geometry_) function in class:Magick::Image
    [all...]
  /external/dng_sdk/source/
dng_image_writer.cpp 5795 const dng_preview *thumbnail = NULL; local
    [all...]
  /development/samples/training/NavigationDrawer/libs/
android-support-v4.jar 
  /developers/build/prebuilts/gradle/SwipeRefreshListFragment/Application/libs/
android-support-v4.jar 
  /developers/samples/android/ui/views/SwipeRefreshLayout/SwipeRefreshListFragment/Application/libs/
android-support-v4.jar 

Completed in 917 milliseconds