This is something that has bothered me for a while now.
If we have some kind of Parcelable object in our activity and we pass it to fragment using Bundle, I've always thought the object that we receive in fragment is actually a new object. However, after running some tests today, it seems the object in fragment is actually same as the object in activity.
Is that correct?
EDIT: Small clarification. I don't refer to object's values. I refer to the '==' comparison.