I notice that there are two Android methods with the same names and parameters:
- Android.app.Activity.onConfigurationChanged(Configuration)
- Android.app.Application.onConfigurationChanged(Configuration)
All of the documentation I can find (such as Handling Runtime Changes) seems to refer to the method in the Activity class. What is the relation between the two methods? For example, if an Activity is specified in the manifest as handling configuration changes, is the Activity's onConfigurationChange method called, then the Application one, or vice versa?