I am trying to use a tabhost that contains 3 tabs
I also have a button within the tabhost that can be clicked no matter what activity is in the frameLayout. (this button returns back to a previous non tab activity)
When one of my tab activites is paused it stores some information.(So every time i switch tab information is stored).
what i am having trouble with is, when i press the button , i call
TabbedActivity.this.finish();
the onPause and onStop method of the activity within the frame layout is not called.
how would i go about calling these methods before i call the .finish() method
To ensure my onPause method was called…. i just called