My question is how to pass data like String between two activities. Normally I would do this:
Intent i = new Intent(thisclass.this,NextClass.class); Bundle b = new Bundle(); i.putExtras(b); b.putString("Name",Name); StartActivity(i); But this would make my Activity close and will open the next Activity, no? Is there any way that I can only pass data without opening the other activity?