According to this the recommended solution is to have Placeholder implement the Parcelable interface. However in my case Placeholder is already an interface and thus cannot implement the Parcelable interface.
Asked
Active
Viewed 66 times
1 Answers
0
Differently than classes, whereas you cannot have one class extending from two or more classes, interfaces can extend multiple interfaces.
The syntax is very easy:
public interface A {
}
public interface B {
}
public interface C extends A, B {
}
Also bear in mind that a class can implement multiple interfaces.

fwerther
- 98
- 6