What Does Intent.putExtra will do

android, android-activity, android-intent

Solution

Intent.putExtra sends a copy of the object it is not the same reference when you get the extra from the intent you make the new reference there

Problem

I am new to android and I use intents to transfer data from one Activity to another. I just wanted to know whether the object reference or object copy is sending to the second Activity.

Original source