Re: [android-developers] Re: Is there any changes in crop image activity

2010-04-08 Thread Paul Tongyoo
I third that! :) :) So as an alternative, I tried putting a crop/true extra onto the intent that starts the MediaStore.ACTION_IMAGE_CAPTURE activity, and I get the following exception: 04-08 09:58:35.720: ERROR/AndroidRuntime(260): android.content.ActivityNotFoundException: No Activity found to

[android-developers] Re: Is there any changes in crop image activity

2010-03-29 Thread anton.slut...@gmail.com
Sure, makes sense. My two cents is, it seems like a whole lot of people need to grab an image from the gallery and plop a chunk of a certain size out of that image. Ofcourse, doing that by hand is possible and wouldn't be all that hard, but it would involve a hole lot of typing for us app

[android-developers] Re: Is there any changes in crop image activity

2010-03-29 Thread Streets Of Boston
I second that! :) On Mar 29, 8:36 am, anton.slut...@gmail.com anton.slut...@gmail.com wrote: Sure, makes sense.  My two cents is, it seems like a whole lot of people need to grab an image from the gallery and plop a chunk of a certain size out of that image.  Ofcourse, doing that by hand is

[android-developers] Re: Is there any changes in crop image activity

2010-03-28 Thread anton.slut...@gmail.com
I had the same problem. The CROP activity worked on 1.6 but not on 2.1. The fix turned out to be an easy one. In 1.6, I defined the activity as Intent intnt = new Intent(com.android.camera.action.CROP); intnt.setClassName(com.android.camera, com.android.camera.CropImage); Here, I'm specifying

Re: [android-developers] Re: Is there any changes in crop image activity

2010-03-28 Thread Dianne Hackborn
Just to be extra super clear on this -- if you are doing stuff that is not in the SDK, you can expect that your app will break at some point on future versions, on different devices, etc. Any case where you are using magic string constants or such, that isn't a reference to a constant in the SDK,

Re: [android-developers] Re: Is there any changes in crop image activity

2010-03-26 Thread Paul Tongyoo
UPDATE: Romain Guy confirmed the CROP intent-filter still exists in Eclair, just moved to the Gallery.git manifest. HTH On Tue, Mar 23, 2010 at 2:13 PM, Streets Of Boston flyingdutc...@gmail.comwrote: This has been working for me, at least on a Droid, G1 and Nexus1: final Intent intent =

[android-developers] Re: Is there any changes in crop image activity

2010-03-23 Thread AndroidDevFTW
Why would they remove this feature??!?! Did they replace it with an alternative cropping solution? Hard to believe a major feature could just be removed. On Mar 20, 6:54 am, Tom thomasfmc...@gmail.com wrote: Very disappointed to see cropping removed. On Mar 10, 6:33 am, Adarsh Pandey

[android-developers] Re: Is there any changes in crop image activity

2010-03-20 Thread Tom
Very disappointed to see cropping removed. On Mar 10, 6:33 am, Adarsh Pandey pandey.adarsh...@gmail.com wrote: So now, how to call CropImage Activity from other third party application. On Feb 15, 6:52 pm, Scytmo i...@scytmo.org.uk wrote: I think the answer is here:  

[android-developers] Re: Is there any changes in crop image activity

2010-03-10 Thread Adarsh Pandey
So now, how to call CropImage Activity from other third party application. On Feb 15, 6:52 pm, Scytmo i...@scytmo.org.uk wrote: I think the answer is here:  http://developer.android.com/intl/de/guide/topics/manifest/activity-e... In eclair, the CropImage activity has no intent-filter

[android-developers] Re: Is there any changes in crop image activity

2010-02-15 Thread Scytmo
I think the answer is here: http://developer.android.com/intl/de/guide/topics/manifest/activity-element.html#exported In eclair, the CropImage activity has no intent-filter associated with it, so it is not exported. This means it cannot be launched by components of other applications. If