How can I send data from one activity (intent) to another?
I use this code to send data:
Intent i=new Intent(context,SendMessage.class);
i.putExtra(\
To access data from Intent you should know two things.
There are different methods in Intent class to extract different kind of data types. It looks like this
getIntent().XXXX(KEY) or intent.XXX(KEY);
So if you know the datatype of your varibale which you set in otherActivity you can use the respective method.
String profileName = getIntent().getStringExtra("SomeKey");
You can see the list of available methods in Official Documentation of Intent.