It depends on where that string came from. Some possibilities: - If the user entered stuff related to that string, put it in persistent storage. You don't want to lose significant data from the user! - If you retrieved this from the network, have a singleton that manages it (downloads it when needs it and holds the result in RAM) and let your second activity just use the some singleton (possibly needing to re-download the string if your process got killed at some point).
On Mon, Aug 8, 2011 at 9:17 AM, Boozel <[email protected]> wrote: > Thanks, I'm trying to pass an ArrayList<String> with about 1500 elements > as an extra between the activities which may be causing it. > Is there a better way of doing this which would prevent the Failed binder > transaction? > > -- > 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 > -- Dianne Hackborn Android framework engineer [email protected] Note: please don't send private questions to me, as I don't have time to provide private support, and so won't reply to such e-mails. All such questions should be posted on public forums, where I and others can see and answer them. -- 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

