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

2009-11-03 Thread Mark Murphy
tomei.ninge...@gmail.com wrote: > From one activity, I want to pass a lot of data (about 1MB of > Strings). No, you don't. You want 1MB of data to be available to multiple activities. There is a very big difference; you do NOT want to be copying 1MB of Strings. > I tried sticking it in Intent.put

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

2009-11-03 Thread tomei.ninge...@gmail.com
>From one activity, I want to pass a lot of data (about 1MB of Strings). I tried sticking it in Intent.putExtra(ArrayList), but if I put in too much data, I get "FAILED BINDER TRANSACTION". What's the easiest way? I don't want to publish a service, or use the file system. I really want a pipe tha