I need to handle orientation changes in my Android application. For this purpose I decided to use OrientationEventListener convenience class. But his callback method is given somewhat strange behavior.

My application starts in the portrait mode and then eventually switches to the lanscape one. I have some custom code executing in the callback onOrientationChanged method that provides some additional UI handling logic - it has a few calls to findViewById. What is strange is that when switching back from landscape to portrait mode onOrientationChanged callback is called twice, and what's even worse - the second call is dealing with bad Context - findViewById method starts returning null. These calls are made right from the MainThread

    @Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    listener = new OrientationListener();
}

    @Override
protected void onResume() {     
    super.onResume();
    // enabling listening
    listener.enable();
}
    @Override
protected void onPause() {
    super.onPause();
    // disabling listening
    listener.disable();
}

I've replicated the same behavior with a dummy Activity without any logic except for one that deals with orientation hadling. I initiate orientation switch from the Android 2.2 emulator by pressing Ctrl+F11 What could be wrong?

Upd: Inner class that implements OrientationEventListener

private class OrientationListener extends OrientationEventListener {
    public OrientationL() {
        super(getBaseContext());
    }

    @Override
    public void onOrientationChanged(int orientation) {

        toString();

    }
}

}

link|improve this question

1  
please post your onOrientationChanged code too – zed_0xff Jun 7 '10 at 8:58
1  
Have you tried this when testing on a real phone? I had some issues with orientation changes that only happened when testing on an emulator. It had something to do with the emulator fakes the screen orientation change - I also had an issue with it recreating the app twice. – Steve Haley Jun 7 '10 at 10:56
Unfortunatelly I don't have access to real phone for now – nixau Jun 7 '10 at 11:07
I wrote a post that describes the emulator bug. – Vikas Jan 6 '11 at 12:55
feedback

3 Answers

up vote 5 down vote accepted

This is a documented bug in the emulator ONLY. A real device will not exhibit this double-lifecycle-events behavior. I had the same issue a while ago and it disappears on a real device.

I would suggest ignoring the problem if you can by only testing orientation changes in one direction until you get your hands on a physical phone. Otherwise you might be able to "skip" the second set of lifecycle calls by keeping a static boolean around indicating you've already gone through the first set.

See this issue report for more info.

link|improve this answer
had some trouble on motorola xoom , onCreate is called twice a row too stackoverflow.com/posts/3922257 – rzr Jan 5 at 11:06
feedback

Have you tried using onConfigurationChanged?

@Override
public void onConfigurationChanged(Configuration newConfig) {
 if(newConfig.equals(Configuration.ORIENTATION_LANDSCAPE)…
link|improve this answer
I get the same problem with findViewById method. It's odd but it seems that declarative layout specified in .xml file haven't rendered yet. – nixau Jun 7 '10 at 10:17
anyway onConfigurationChanged seems to be better solution when compared with OrientationEventListener callback subscription – nixau Jun 8 '10 at 9:00
feedback

Add android:configChanges="orientation" in manifest file in activity tag like

<activity android:label="@string/app_name" android:configChanges="orientation" android:name=".com.androidpeople">

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.