tags:

views:

15

answers:

1

Can I be notified of the following events for an Activity:

  • screenSizeWillChange
  • screenSizeDidChange

I realize that I can probably override the main View's onSizeChanged() and be notified when the View has changed, but how can I be notified when it's about to change?

+1  A: 

Thats what you are looking for:

http://developer.android.com/reference/android/app/Activity.html#ConfigurationChanges

WarrenFaith
Ok, so the only way to be notified of something like that is to tell Android that you want to handle it yourself?
synic