I would like to now if the is any possible way to trigger an event when the layout is being redrawn because of the event of switching directly from landscape right orientation to landscape left orientation.
I tried the OrientationEventListener. The problem is that it triggers to fast. I am doing UI changes and they happen before the landscape is being redrawn, and it looks bad.
I could just add some delay on the changes but depending on the phone that change could last more or less.
For the onConfigurationChanged the timing is perfect, but of course it only works for portrait to landscape or landscape to portrait.
My application must not pause in this change, so using onPause, onStop, etc is not an option.
So I am looking for an event similar to onConfigurationChanged that also covers landscape right to landscape left changes.