For some reason that seems not to work in my case. I've declared the
activity as android:configChanges="orientation" in the
AndroidManifest.xml, which I assume will call onConfigurationChanged
(Configuration). So for testing purposes I've simply implemented it as
follows:

@Override
public void onConfigurationChanged (Configuration newConfig){
        Log.i(this.toString(), "I've been called!");
        super.onConfigurationChanged(newConfig);
}

However, it never gets called. Am I doing anything wrong here?!
Thanks!




On Mar 11, 11:44 am, Stoyan Damov <[email protected]> wrote:
> Yes, basically if you declare your activity's orientation to be
> "sensor" there's nothing else to do (I think).

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to