I have two activities.
First calls second like this:
Intent intent = new Intent(this, Second.class); startActivityForResult(intent, 1);
Just call this lines before calling super.onFinish() or wherever you exit the previous activity
Intent intent = getIntent(); intent.putExtra("Date",dateSelected); setResult(RESULT_OK, intent);