Hello ben,
I finally found what you were looking for:
Short Info:
CONFIGURATION_CHANGED_ACTION
Broadcast Action: The current device Resources.Configuration (orientation, locale, etc) has changed.
public static final String
CONFIGURATION_CHANGED_ACTIONBroadcast Action: The current device Resources.Configuration (orientation, locale, etc) has changed. When such a change happens, the UIs (view hierarchy) will need to be rebuilt based on this new information; for the most part, applications don't need to worry about this, because the system will take care of stopping and restarting the application to make sure it sees the new changes. Some system code that can not be restarted will need to watch for this action and handle it appropriately.
See Also
* Resources.Configuration
:src: (click)Constant Value: "android.intent.action.CONFIGURATION_CHANGED"
But the
Resources.Configuration does not seem to be completed (nothing about ScreenOrientation can be found there

So having received that Intent, you could check for Orientation-changes with this Class: DisplayMetrics:
http://code.google.com/android/referenc ... trics.htmlHope I could help you.
Regards,
plusminus