I'm using the following code to switch between activities:
Intent b = new Intent(nowActivity.this, About.class);
startActivity(b);
return true;
This code works perfectly but it seems to make it start a new activity on top of the existing activity.
Example: I start the application on my Android phone and pressing the menu button to make the optionsmenu up on the screen. I then hit "About" to go to the about page for the application. If I then pressing the "Close" option in the menu, the first page (home screen of the application) will be visible on the screen and everything is back to square 1, just like I was opening the application once again.
I don't want it to act like this and I asking you now, how can I fix this problem?
Thanks in advance.