Some practical example of how it would be to share a class by implementing Parcelable
to share an object between Activities?
The class I have already defined
public class Interstitial extends Banner implements Parcelable {
...
The object that I want to share between activities
Interstitial entryAd.setType(Interstitial.TypeInterstitial.APPGAME);
entryAd.setTitle1("Your internet-100X Faster");
...
I still need to arm the Intent
and receive the intent
to recover the object in the other activity.