[android-developers] Re: How to pass large amount of data during startActivityForResult

2009-11-20 Thread tedd
Mark, Any idea as to what is the maximum size of data that we can share bw processes, Even i am see Failed Binder Transaction error!!! when I give bitmap of size greater than 1MB to the framework for rendering. (i.e thru RemoteViews.setImageViewBitmap call) ? Is there a possibility to

[android-developers] Re: How to pass large amount of data during startActivityForResult

2009-11-03 Thread Jason Proctor
why is using a static data member not a real solution? i have the same requirement and i use globally accessible singletons (containing static references) to share stuff between my activities. works like a charm. feels real. i don't know whether this adds realness, but WebKit shares its cookie

[android-developers] Re: How to pass large amount of data during startActivityForResult

2009-11-03 Thread tomei.ninge...@gmail.com
Does anyone have a real answer? I need to do this. If you don't know how to do it please don't feel obliged to reply to tell me it's not an androidie thing to do. On Nov 3, 3:32 pm, Mark Murphy wrote: > tomei.ninge...@gmail.com wrote: > > From one activity, I want to pass a lot of data (about 1M

Re: [android-developers] Re: How to pass large amount of data during startActivityForResult

2009-11-03 Thread Mark Murphy
tomei.ninge...@gmail.com wrote: > Does anyone have a real answer? That *is* a real answer. As is using a service -- which is probably the direction I would go, given the limited info you have provided -- but you rejected that out of hand. > I need to do this. As I wrote, you need to have two act