From caf46711c033bb2de4649080e723b5cca81549c9 Mon Sep 17 00:00:00 2001 From: Ruben Brunk Date: Wed, 17 Oct 2012 00:40:35 -0700 Subject: Added support for crop actions. Changed overflow menu to use new editor. Bug: 7281479 Bug: 7337191 Change-Id: I91055c972666e4c2d605903646b55d8c67ae87f3 --- src/com/android/gallery3d/app/PhotoPage.java | 8 +++++--- src/com/android/gallery3d/filtershow/FilterShowActivity.java | 7 +++++++ 2 files changed, 12 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/com/android/gallery3d/app/PhotoPage.java b/src/com/android/gallery3d/app/PhotoPage.java index 169303c66..90b82cefc 100644 --- a/src/com/android/gallery3d/app/PhotoPage.java +++ b/src/com/android/gallery3d/app/PhotoPage.java @@ -57,6 +57,7 @@ import com.android.gallery3d.data.SecureSource; import com.android.gallery3d.data.SnailAlbum; import com.android.gallery3d.data.SnailItem; import com.android.gallery3d.data.SnailSource; +import com.android.gallery3d.filtershow.FilterShowActivity; import com.android.gallery3d.picasasource.PicasaSource; import com.android.gallery3d.ui.AnimationTime; import com.android.gallery3d.ui.DetailsHelper; @@ -995,9 +996,10 @@ public class PhotoPage extends ActivityState implements } case R.id.action_crop: { Activity activity = mActivity; - Intent intent = new Intent(CropImage.CROP_ACTION); - intent.setClass(activity, CropImage.class); - intent.setData(manager.getContentUri(path)); + Intent intent = new Intent(FilterShowActivity.CROP_ACTION); + intent.setClass(activity, FilterShowActivity.class); + intent.setDataAndType(manager.getContentUri(path), current.getMimeType()) + .setFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION); activity.startActivityForResult(intent, PicasaSource.isPicasaImage(current) ? REQUEST_CROP_PICASA : REQUEST_CROP); diff --git a/src/com/android/gallery3d/filtershow/FilterShowActivity.java b/src/com/android/gallery3d/filtershow/FilterShowActivity.java index 1f1ba0314..c07ef1a36 100644 --- a/src/com/android/gallery3d/filtershow/FilterShowActivity.java +++ b/src/com/android/gallery3d/filtershow/FilterShowActivity.java @@ -73,6 +73,7 @@ import java.util.Vector; public class FilterShowActivity extends Activity implements OnItemClickListener, OnShareTargetSelectedListener { + public static final String CROP_ACTION = "com.android.camera.action.CROP"; private final PanelController mPanelController = new PanelController(); private ImageLoader mImageLoader = null; private ImageShow mImageShow = null; @@ -344,6 +345,12 @@ public class FilterShowActivity extends Activity implements OnItemClickListener, } else { pickImage(); } + + String action = intent.getAction(); + if (action == CROP_ACTION){ + mPanelController.showComponent(findViewById(R.id.cropButton)); + } + } private int getScreenImageSize() { -- cgit v1.2.3