I have 2 major activity in my project Connect+Details and Menu. After I switch between the first activity to the second everything goes well. the problem start in returning back from 'Menu' to 'Connect+Details'.
when I use the back key to switch between the second activity and go back to the first everything goes well.
problem start when I use this code:
Intent myIntent = new Intent(Menu.this, ConnectActivity.class);
startActivity(myIntent);
I do go back to 'Connect+Details' but every detail in that activity is lost.
my question is simple, how can i go back to previews activity and still have the details used in that activity.
Edit:
the same thing goes even when I am in the 4th, 5th activity so finish()
didn't help me.