HomeSort by relevance Sort by last modified time
    Searched refs:cropIntent (Results 1 - 4 of 4) sorted by null

  /packages/apps/Gallery/src/com/android/camera/
ImageGallery.java 309 Intent cropIntent = new Intent();
310 cropIntent.setData(img.fullSizeImageUri());
311 cropIntent.setClass(this, CropImage.class);
312 cropIntent.putExtras(newExtras);
315 cropIntent.putExtras(myExtras);
316 startActivityForResult(cropIntent, CROP_MSG);
    [all...]
MenuHelper.java 596 Intent cropIntent = new Intent(
598 cropIntent.setData(u);
600 cropIntent, RESULT_COMMON_MENU_CROP);
    [all...]
  /packages/apps/Gallery3D/src/com/cooliris/media/
CropImage.java 116 Intent cropIntent = new Intent();
117 cropIntent.setData(Uri.parse(contentUri));
118 cropIntent.setClass(context, CropImage.class);
119 cropIntent.putExtras(newExtras);
121 cropIntent.putExtras(myExtras);
122 ((Activity) context).startActivityForResult(cropIntent, CropImage.CROP_MSG);
    [all...]
  /packages/apps/Camera/src/com/android/camera/
Camera.java     [all...]

Completed in 91 milliseconds