How to pass data/parameter values from one activity to another in android?
I have used
loginname=txtloginname.getText().toString(); password=txtpassword
You can just say newIntent.putExtra("name",value); use it multiple times to add multiple data. And depending on the data you stored call getStringExtra("name"); in the next activity.
newIntent.putExtra("name",value);
getStringExtra("name");
You can use the method:
getStringExtra()