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
putExtra()
Bundle
As you can see, the Intent internally stores it in a Bundle.
Intent
public Intent putExtra(String name, String value) { if (mExtras == null) { mExtras = new Bundle(); } mExtras.putString(name, value); return this; }