I've got a few custom objects like RootObject:
public class RootObject
{
public Form Form { get; set; }
}
How can I pass an object to the next Activity with an Intent?
I read something about Serialization or Parcelable and tried some but can't get it working.
Is there no easier way to pass an object?