Abstract class as parcelable
问题 Basicly I have the following structure in my app: It would be straightforward to implement such a structure without the abstract class ProjectItem , but in this case I don't know how to implement this. The abstract class ProjectItem needs a CREATOR as it should be parcelable. (like in.readTypedList(mProjectItems, ProjectItem.CREATOR); within the constructor Project(Parcel in)) But in fact, the CREATOR can only be implemented in its derived classes for logical reasons. So, how to implement