Home | History | Annotate | Download | only in camera

Lines Matching refs:image

55 // the user view one image at a time, and can click "previous" and "next"
56 // button to see the previous or next image. In slide show mode it shows one
57 // image after another, with some transition effect.
128 // The image view displayed for normal mode.
212 IImage image = mAllImages.getImageAt(mCurrentPosition);
213 if (image instanceof VideoObject) {
405 IImage image = mAllImages.getImageAt(mCurrentPosition);
406 Uri uri = image.fullSizeImageUri();
407 cb.run(uri, image);
459 IImage image = mAllImages.getImageAt(mCurrentPosition);
462 mImageMenuRunnable.gettingReadyToOpen(menu, image);
468 MenuHelper.enableShowOnMapMenuItem(menu, MenuHelper.hasLatLngData(image));
488 IImage image = mAllImages.getImageAt(pos);
490 new RotateBitmap(b, image.getDegreesRotated()), true);
508 // need to get fancier and read in the fuller size image as the
569 mImageView = (ImageViewTouch) findViewById(R.id.image);
656 IImage image = mAllImages.getImageAt(mCurrentPosition);
658 if (image instanceof VideoObject) {
895 IImage image = mAllImages.getImageForUri(uri);
896 if (image == null) return false;
897 mCurrentPosition = mAllImages.getImageIndex(image);
904 IImage image = mAllImages.getImageAt(mCurrentPosition);
905 if (image == null) return null;
906 return image.fullSizeImageUri();
983 private void startShareMediaActivity(IImage image) {
984 boolean isVideo = image instanceof VideoObject;
987 intent.setType(image.getMimeType());
988 intent.putExtra(Intent.EXTRA_STREAM, image.fullSizeImageUri());
1001 IImage image = mAllImages.getImageAt(mCurrentPosition);
1003 Intent.ACTION_VIEW, image.fullSizeImageUri());
1007 Log.e(TAG, "Couldn't view video " + image.fullSizeImageUri(), ex);
1020 IImage image = mAllImages.getImageAt(mCurrentPosition);
1021 if (!MenuHelper.isWhiteListUri(image.fullSizeImageUri())) {
1024 startShareMediaActivity(image);
1028 IImage image = mAllImages.getImageAt(mCurrentPosition);
1029 Intent intent = Util.createSetAsIntent(image);
1063 // cropped image as the Action rather than the Data.
1067 // image as currentImage.
1069 IImage image = mAllImages.getImageForUri(mSavedUri);
1070 // image could be null if SD card is removed.
1071 if (image == null) {
1074 mCurrentPosition = mAllImages.getImageIndex(image);
1109 // This is the time we allow the dpad to change the image position again.
1126 int nextImagePos = -2; // default no next image
1260 // Recycle the image being kicked out.
1262 // do not happen to recycle the image being displayed.