HomeSort by relevance Sort by last modified time
    Searched refs:Images (Results 26 - 50 of 122) sorted by null

12 3 4 5

  /packages/apps/Gallery/src/com/android/camera/
BitmapManager.java 22 import android.provider.MediaStore.Images;
128 Images.Thumbnails.cancelThumbnailRequest(cr, -1, t.getId());
156 return Images.Thumbnails.getThumbnail(cr, origId, t.getId(),
  /packages/apps/Gallery/src/com/android/camera/gallery/
Image.java 29 import android.provider.MediaStore.Images;
30 import android.provider.MediaStore.Images.ImageColumns;
36 * The class for normal images in gallery.
157 Images.Thumbnails.MINI_KIND, options, false);
BaseImage.java 27 import android.provider.MediaStore.Images;
173 Images.Thumbnails.MICRO_KIND, null, false);
  /packages/apps/LegacyCamera/src/com/android/camera/
Storage.java 25 import android.provider.MediaStore.Images;
26 import android.provider.MediaStore.Images.ImageColumns;
89 uri = resolver.insert(Images.Media.EXTERNAL_CONTENT_URI, values);
Thumbnail.java 27 import android.provider.MediaStore.Images;
28 import android.provider.MediaStore.Images.ImageColumns;
165 bitmap = Images.Thumbnails.getThumbnail(resolver, image.id,
166 Images.Thumbnails.MINI_KIND, null);
196 Uri baseUri = Images.Media.EXTERNAL_CONTENT_URI;
MenuHelper.java 28 import android.provider.MediaStore.Images;
150 Uri target = Images.Media.EXTERNAL_CONTENT_URI.buildUpon()
  /cts/tests/tests/provider/src/android/provider/cts/
MediaStoreIntentsTest.java 42 intent.setData(MediaStore.Images.Media.EXTERNAL_CONTENT_URI);
60 intent.setData(MediaStore.Images.Media.EXTERNAL_CONTENT_URI);
MediaStore_Images_ThumbnailsTest.java 31 import android.provider.MediaStore.Images.Media;
32 import android.provider.MediaStore.Images.Thumbnails;
214 mContentResolver.delete(MediaStore.Images.Thumbnails.EXTERNAL_CONTENT_URI,
215 MediaStore.Images.Thumbnails.IMAGE_ID + "=?", new String[]{ "" + imgid});
376 Bitmap foo = MediaStore.Images.Thumbnails.getThumbnail(mContentResolver,
381 // remove one of the images, its thumbnail, and the thumbnail cache
394 MediaStore.Images.Thumbnails.EXTERNAL_CONTENT_URI, null,
412 Bitmap foo = MediaStore.Images.Thumbnails.getThumbnail(mContentResolver,
418 MediaStore.Images.Media.EXTERNAL_CONTENT_URI, null, null, null,
422 foo = MediaStore.Images.Thumbnails.getThumbnail
    [all...]
MediaStore_FilesTest.java 211 mResolver.delete(MediaStore.Images.Media.INTERNAL_CONTENT_URI,
216 values.put(MediaStore.Images.Media.DISPLAY_NAME, "My Bitmap");
217 values.put(MediaStore.Images.Media.MIME_TYPE, "image/jpeg");
218 values.put(MediaStore.Images.Media.DATA, "/foo/bar/dummy.jpg");
219 Uri uri = mResolver.insert(MediaStore.Images.Media.INTERNAL_CONTENT_URI, values);
421 fileUri = mResolver.insert(MediaStore.Images.Media.EXTERNAL_CONTENT_URI, values);
452 fileUri = mResolver.insert(MediaStore.Images.Media.EXTERNAL_CONTENT_URI, values);
  /external/ImageMagick/api_examples/
magick_script 16 A bit like what Imagemagick does not Images!
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
LocalImage.java 28 import android.provider.MediaStore.Images;
29 import android.provider.MediaStore.Images.ImageColumns;
117 Uri uri = Images.Media.EXTERNAL_CONTENT_URI;
268 Uri baseUri = Images.Media.EXTERNAL_CONTENT_URI;
278 Uri baseUri = Images.Media.EXTERNAL_CONTENT_URI;
292 values.put(Images.Media.SIZE, fileSize);
303 values.put(Images.Media.ORIENTATION, rotation);
310 Uri baseUri = Images.Media.EXTERNAL_CONTENT_URI;
325 // For example, the width and height of an webp images is always '0'.
BucketHelper.java 9 import android.provider.MediaStore.Images;
10 import android.provider.MediaStore.Images.ImageColumns;
35 // "album" to be the collection of images/videos which have the same value
69 // bucket info from the Images and Video tables and then merge them
85 // When query from the Images or Video tables, we only need to group by BUCKET_ID.
128 jc, resolver, Images.Media.EXTERNAL_CONTENT_URI, buckets);
211 resolver, Images.Media.EXTERNAL_CONTENT_URI, bucketId);
SecureAlbum.java 22 import android.provider.MediaStore.Images;
37 private int mMinImageId = Integer.MAX_VALUE; // the smallest id of images
38 private int mMaxImageId = Integer.MIN_VALUE; // the biggest id in images
49 {Images.Media.EXTERNAL_CONTENT_URI, Video.Media.EXTERNAL_CONTENT_URI};
62 mShowUnlockItem = (!isCameraBucketEmpty(Images.Media.EXTERNAL_CONTENT_URI)
170 Images.Media.EXTERNAL_CONTENT_URI, mMinImageId, mMaxImageId);
LocalAlbum.java 25 import android.provider.MediaStore.Images;
26 import android.provider.MediaStore.Images.ImageColumns;
41 // The media items need to be all images or all videos, but not both.
74 mBaseUri = Images.Media.EXTERNAL_CONTENT_URI;
104 return MediaStore.Images.Media.EXTERNAL_CONTENT_URI.buildUpon()
175 baseUri = Images.Media.EXTERNAL_CONTENT_URI;
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/tools/
SaveImage.java 28 import android.provider.MediaStore.Images;
29 import android.provider.MediaStore.Images.ImageColumns;
118 // This pattern will facilitate the multiple images deletion in the auxiliary
364 Images.Media.EXTERNAL_CONTENT_URI, values);
439 Images.Media.EXTERNAL_CONTENT_URI, values);
679 Images.Media.EXTERNAL_CONTENT_URI, values);
700 values.put(Images.Media.TITLE, file.getName());
701 values.put(Images.Media.DISPLAY_NAME, file.getName());
702 values.put(Images.Media.MIME_TYPE, "image/jpeg");
703 values.put(Images.Media.DATE_TAKEN, time)
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/datamodel/
GalleryBoundCursorLoader.java 23 import android.provider.MediaStore.Images.Media;
  /frameworks/base/core/java/android/provider/
MediaStore.java 615 * This class is used internally by Images.Thumbnails and Video.Thumbnails, it's not intended
696 isVideo ? Video.Media.EXTERNAL_CONTENT_URI : Images.Media.EXTERNAL_CONTENT_URI);
    [all...]
  /cts/hostsidetests/appsecurity/test-apps/ExternalStorageApp/src/com/android/cts/externalstorageapp/
CommonExternalStorageTest.java 25 import android.provider.MediaStore.Images;
368 values.put(Images.Media.MIME_TYPE, "image/jpeg");
369 values.put(Images.Media.DATA,
373 Uri uri = resolver.insert(MediaStore.Images.Media.EXTERNAL_CONTENT_URI, values);
376 assertEquals(MediaStore.Images.Media.EXTERNAL_CONTENT_URI
387 values.put(Images.Media.MIME_TYPE, "image/jpeg");
388 values.put(Images.Media.DATA,
391 final Uri uri = resolver.insert(MediaStore.Images.Media.EXTERNAL_CONTENT_URI, values);
  /developers/build/prebuilts/gradle/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/ui/
ImageGridFragment.java 45 import com.example.android.displayingbitmaps.provider.Images;
54 * cache is retained over configuration changes like orientation change so the images are populated
86 // The ImageFetcher takes care of loading images into our ImageView children asynchronously
213 * transparent ActionBar and don't want the real top row of images to start off covered by it.
245 return Images.imageThumbUrls.length + mNumColumns;
251 null : Images.imageThumbUrls[position - mNumColumns];
306 mImageFetcher.loadImage(Images.imageThumbUrls[position - mNumColumns], imageView);
ImageDetailActivity.java 39 import com.example.android.displayingbitmaps.provider.Images;
45 private static final String IMAGE_CACHE_DIR = "images";
61 // Fetch screen height and width, to use as our max size when loading images as this
68 // For this sample we'll use half of the longest width to resize our images. As the
79 // The ImageFetcher takes care of loading images into our ImageView children asynchronously
85 mAdapter = new ImagePagerAdapter(getSupportFragmentManager(), Images.imageUrls.length);
169 * Called by the ViewPager child fragments to load images via the one ImageFetcher
195 return ImageDetailFragment.newInstance(Images.imageUrls[position]);
  /developers/samples/android/ui/graphics/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/ui/
ImageGridFragment.java 45 import com.example.android.displayingbitmaps.provider.Images;
54 * cache is retained over configuration changes like orientation change so the images are populated
86 // The ImageFetcher takes care of loading images into our ImageView children asynchronously
213 * transparent ActionBar and don't want the real top row of images to start off covered by it.
245 return Images.imageThumbUrls.length + mNumColumns;
251 null : Images.imageThumbUrls[position - mNumColumns];
306 mImageFetcher.loadImage(Images.imageThumbUrls[position - mNumColumns], imageView);
ImageDetailActivity.java 39 import com.example.android.displayingbitmaps.provider.Images;
45 private static final String IMAGE_CACHE_DIR = "images";
61 // Fetch screen height and width, to use as our max size when loading images as this
68 // For this sample we'll use half of the longest width to resize our images. As the
79 // The ImageFetcher takes care of loading images into our ImageView children asynchronously
85 mAdapter = new ImagePagerAdapter(getSupportFragmentManager(), Images.imageUrls.length);
169 * Called by the ViewPager child fragments to load images via the one ImageFetcher
195 return ImageDetailFragment.newInstance(Images.imageUrls[position]);
  /development/samples/browseable/DisplayingBitmaps/src/com.example.android.displayingbitmaps/ui/
ImageGridFragment.java 45 import com.example.android.displayingbitmaps.provider.Images;
54 * cache is retained over configuration changes like orientation change so the images are populated
86 // The ImageFetcher takes care of loading images into our ImageView children asynchronously
213 * transparent ActionBar and don't want the real top row of images to start off covered by it.
245 return Images.imageThumbUrls.length + mNumColumns;
251 null : Images.imageThumbUrls[position - mNumColumns];
306 mImageFetcher.loadImage(Images.imageThumbUrls[position - mNumColumns], imageView);
ImageDetailActivity.java 39 import com.example.android.displayingbitmaps.provider.Images;
45 private static final String IMAGE_CACHE_DIR = "images";
61 // Fetch screen height and width, to use as our max size when loading images as this
68 // For this sample we'll use half of the longest width to resize our images. As the
79 // The ImageFetcher takes care of loading images into our ImageView children asynchronously
85 mAdapter = new ImagePagerAdapter(getSupportFragmentManager(), Images.imageUrls.length);
169 * Called by the ViewPager child fragments to load images via the one ImageFetcher
195 return ImageDetailFragment.newInstance(Images.imageUrls[position]);
  /frameworks/base/media/java/android/media/
ThumbnailUtils.java 29 import android.provider.MediaStore.Images;
85 boolean wantMini = (kind == Images.Thumbnails.MINI_KIND);
141 if (kind == Images.Thumbnails.MICRO_KIND) {
177 if (kind == Images.Thumbnails.MINI_KIND) {
188 } else if (kind == Images.Thumbnails.MICRO_KIND) {

Completed in 445 milliseconds

12 3 4 5