I'm using MonoDroid but an equivalent Java answer can still help.
I'm using a portrait layout and a landscape layout so, if possible, I want to use the Android screen orientation to automatically destory/create activities.
My app is using TextToSpeech so in the activity's OnPause() I am stopping it, which works well when the Home key is pressed or an incoming call is happening. However I don't want to stop the TextToSpeech on a screen orientation change from the user.
Is there a simple way of detecting this change so that TextToSpeech isn't interrupted?
My activity's OnStop() code:
protected override void OnPause()
{
// I need this for Home key, intercepting phone calls, etc.
// But how can I prevent this for a screen orientation change?
// Need to enable screen orientation to get my portrait/landscape views
if(Text2Speech.IsTextToSpeechInitialised && Text2Speech.TextToSpeech != null)
Text2Speech.TextToSpeech.Stop();
base.OnPause();
}
android:configChanges="orientation"for yourActivityin the manifest? This specifies that you want to handle orientation changes yourself. OverrideonConfigurationChangedin yourActivityand do anything you might need to do (change layout etc). – Squonk Jan 8 '12 at 8:51Activitylifecycle is subject to various things (incoming phone call for example). During the 'out' phase of anActivity(pause, stop destroy) there isn't a system mechanism to explain 'why' this is happening. The best you've got is with handling the change yourself. TheConfigurationobject passed intoonConfigurationChanged(...)will at least help you identify this is an orientation change at which point you'll just have to usesetContentView(...)with the correct layout. It's fiddly but not too bad. – Squonk Jan 8 '12 at 9:53