Advantages of using Bundle instead of direct Intent putExtra() in Android

It makes little (if any difference). The code using an additional bundle is slightly heavier (it won’t make any difference in any practical application) and slightly easier to manage, being more general. If one day you decide that – before sending information inside an intent – you want to serialize the data to database – … Read more