I am designing android application using tabHost.
TabActivity is always being launched from anther activity( suppose, Activity A). After that Activity A has no use.
When I am on tabActivity & if back button is pressed, then all goes in background( like every app). Now using task manager when I start app again, I want to retain tabActivity as it was. (like home button.) But currently I am getting Activity A. (as with back Button activities are getting destroyed.)
In short, I want to override backButton similar to Home Button.
I tried without luck with moveTaskToBack(true).
Can anybody suggest solution?