Possible Duplicate:
Calling camera app recreates android activity
I am creating a tabbed activity in android.Inside one of the activities within a tab I launch the camera app using startActivityForResult(). After returning from camera my tabhost is recreated. So I am taken back to the initial screen of the tab.
I have added this line for tabhost and all the activities of the tab. But still the same.
android:configChanges="orientation|keyboardHidden"
How can I prevent tabhost reloading/recreation?
Thanks