I'm new with android and my question is really simple.
What's the diffrence between getExtras().getParcelableArrayList
and getParcelableArrayExtra
?
Asked
Active
Viewed 234 times
0

Landolsi Med Amine
- 23
- 4
-
1`getExtras()` give you bundle and you call `getParcelableArrayList` on the same while you call `getParcelableArrayExtra` on intent. you might want to take a look @ http://stackoverflow.com/questions/15243798/advantages-of-using-bundle-instead-of-direct-intent-putextra-in-android – Raghunandan Oct 27 '16 at 14:09
-
So basically it depends on the method used when the extra was passed to the intent object. thanks :) – Landolsi Med Amine Oct 27 '16 at 14:36