Why bundle has getParcelableArrayList, getParcelable methods; but
Intent has only putParcelableArrayListExtra method?
Can I transmit only object<T>, not ArrayList of one element?
Then, what is getParcelable for?
Why bundle has getParcelableArrayList , getParcelable methods; but Intent has only putParcelableArrayListExtra method? Can
Share
Intent provides bunch of overloading putExtra() methods.
Suppose you have a class Foo implements Parcelable properly, to put it into Intent in an Activity:
To get it from intent in another activity: