I'm trying to create class with generics that will have ability to serialize its state using Parcelable interface. The problem is that class has to contain constructor with single parameter - Parcel, but in my case I need to create class with additional parameters. Besides, Parcelable.Creator doesn't allow to use generics.

Here is an example:

public class Sample<T> {

...

public Sample(Context ctx, SomeInterface iface, Parcel parcel) {...}

...

}

What is the best practice to do it?

link|improve this question
feedback

1 Answer

Already found the solution - I moved all members related to object state into separate Parcelable class and added the following constructor:

public Sample(..., ParcelableState state)

link|improve this answer
Accept your answer as the solution to your problem - you will get a badge out of it too (plus a little rep as well). – Chad Gorshing Nov 9 '11 at 4:38
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.