Currently I am working on audio streaming on android. All method I have written related to streaming and playing the audio is in the onCreate() method. The problem is when ever I change into portrait mode, all methods are called again. How can I prevent this?

link|improve this question

58% accept rate
feedback

2 Answers

up vote 1 down vote accepted

When orientation is changed currently active Activity is destroyed and a new one is created.

Either you could prevent orientation change with android:configChanges="orientation|keyboardHidden" or move audio streaming code to a Service.

link|improve this answer
feedback

You need to android:configChanges="orientation" this on your Manifest to your activity. That will stop it from calling Oncreate again.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.