Re: [android-developers] Re: Failed binder transaction when passing byte[] (from camera) between intents

2010-08-14 Thread Jobs He
hello,can you tell me how you do it .I meet the problem too . Thanks ! 2010/2/18 Bart bvandep...@gmail.com Thanks, that seems to work :) On Feb 17, 4:24 pm, Streets Of Boston flyingdutc...@gmail.com wrote: In onPictureTaken, save the camera to a file and insert into the media content

[android-developers] Re: Failed binder transaction when passing byte[] (from camera) between intents

2010-02-17 Thread Bart
So I can never make camera images that are higher resolution then 277x184? :S If I stuff all the camera code into my main activity, then it should work. But that's a little messy. Are you sure there isn't another way to pass the camera images? Thanks On Feb 16, 10:05 pm, Streets Of Boston

[android-developers] Re: Failed binder transaction when passing byte[] (from camera) between intents

2010-02-17 Thread Streets Of Boston
In onPictureTaken, save the camera to a file and insert into the media content provider. Then, when the image has been inserted, instead of sending the raw binary data of the bitmap, send back the content-Uri of the image you took. On Feb 17, 3:07 am, Bart bvandep...@gmail.com wrote: So I can

[android-developers] Re: Failed binder transaction when passing byte[] (from camera) between intents

2010-02-17 Thread Bart
Thanks, that seems to work :) On Feb 17, 4:24 pm, Streets Of Boston flyingdutc...@gmail.com wrote: In onPictureTaken, save the camera to a file and insert into the media content provider. Then, when the image has been inserted, instead of sending the raw binary data of the bitmap, send back

[android-developers] Re: Failed binder transaction when passing byte[] (from camera) between intents

2010-02-16 Thread Streets Of Boston
Binary data works upto about 100KByte. Anything larger, you very likely get that error. For images in RGB_565, this is about 277 x 184 pixels max (277 x 184 * 2 = 101936) On Feb 16, 4:17 am, Bart bvandep...@gmail.com wrote: Hi, I have a problem with an app that lets the user take a picture.