TheLastCrusade / SoundStream

1 stars 6 forks source link

band-aid fix for the rotation issue #112

Closed bryansills closed 11 years ago

bryansills commented 11 years ago

This is not the correct way to fix this issue, but it will get us through to the alpha.

The correct way to handle rotation is to save the necessary data in an overridden onSaveInstanceState method and pull them out of the bundle in onCreate. However, if we try to do it this way right now, we don't have a Bundle when onCreate is called after the rotation. The Bundle is created correctly but onCreate is called twice for some reason with the Bundle missing in the second calling of onCreate.

reidbaker commented 11 years ago

This is for the entire application not just the playbar fragment. Let me see if I can find a better way.

ejohnson44 commented 11 years ago

See #113