there is no flag or attribute which can be set only in the xml files to achieve what you want, but the good news are that what you describe can be done in a lot of ways:
one way is to do this two operations:
set your "activity1" attributes on the manifest.xml with property:
android:noHistory="true"
this flag will remove the activity from stack when you navigate away from it.
then, override the onBackPressed() method of "activity2":
instead of:
super.onBackPressed();
write:
Intent intent = new Intent(this, Activity1.class);
startActivity(intent);
finish();
this will cause new instance of activity1 to be launched when user press back from activity2.
second option, is to follow Devunwired advice, and just implement on your "activity1" the onResume() method, which been called when the activity brought back to forground:
instead of:
super.onBackPressed();
write:
Intent intent = getIntent();
startActivity(intent);
finish();
this implemetation would cause to "activity1" to "restart" by clausing and re-openning itself when it return to be forground
if you want to know what is the right thing to do from my point of view: probably the reason you want to restart the activity is that you want to refresh some values and views state. what you need to do is not to restart the activity, but to run on the onResume() method the code that "refreshes" the data and the appropriate views, and that's it.