[email protected] 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 activities share 1MB of Strings. This does NOT mean you have to pass them via an Intent. And, as you have discovered, you cannot pass them via an Intent, in any case. Either reduce the amount of data by a factor of 100 or so, or use a service, or use a custom Application object, or use a static data member, or use a file. Remember: your two activities should be in the same process, and hence the same VM, so all you need to do is be able to reference those strings from the same place. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://twitter.com/commonsguy _The Busy Coder's Guide to *Advanced* Android Development_ Version 1.2 Available! -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

