Question

I have an application which consists of two activities/screens and a java class from which i create objects.

I need to use an object I created on the first activity (instanciating the .java class) on the second activity.

What is the simplest way to do this? I googled about it and implementing the Parcelable interface on the java class seems to be the most common answer to this problem. But the object is kind of complex and parceling every single member of it seems like a brute-force solution.

Isn't there an elegant solution to this?

Thanks

EDIT: Is storing the object data on a simple SQlite database a solution?

No correct solution

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top