Intent and Bundle Relation

前端 未结 4 722
被撕碎了的回忆
被撕碎了的回忆 2020-12-10 04:32

While using Intent object we can put different types of data directly using its putExtra(). We can also put these extra data into a Bundle object a

4条回答
  •  臣服心动
    2020-12-10 05:29

    Sometimes you need to pass only a few variables or values to some Other Activity, but what if you have a bunch of variable's or values that you need to pass to various Activities. In that case you can use Bundle and pass the Bundle to the required Activity with ease. Instead of passing single variable's every time.

提交回复
热议问题