In a Flex mobile application, I have something like this:

protected function stage_orientationChange(event:StageOrientationEvent):void
{   
    handleOrientation(event.afterOrientation);
}

private function handleOrientation(requestedOrientation:String = null):void
{   
    // This works! It correctly outputs the orientation of the device in Flash Builder.
    trace(requestedOrientation); 

    // This works in Flash Builder and corretly changes the title of the view, 
    // but DOES NOT work when I run it on an Android phone.
    title = requestedOrientation;
}

Now, inside the handleOrientation() method, I have updated values going to different objects.

When I run the air app in Flex, the objects update on the fly just well and fine. Now when I export to .apk and run it on an Android phone, the phone orients as expected. BUT none of the objects update with their values.

Any idea what is happening? Why? Or what can I do to find out more? Any suggestions anybody?

link|improve this question
What have you tried so far? – mouseas Feb 1 at 16:45
Try listen stage Event.RESIZE event. When device will rotate - stage will dispatch this event. And do you specify <autoOrients>true</autoOrients> in manifest file? – kostik Feb 1 at 17:04
When I run trace(event.afterOrientation); it gives me the correct orientation. So, I know that the listener is working. But it appears that none of objects are updating. Is there a way to get the View to refresh, or redraw? If so, how to call the method through the View? – Guy Micciche Feb 2 at 18:55
<autoOrients> is set to "true" and my listeners are working. Everything works expectedly in Flash Builder. Does not work when I package it to an Android phone. It feels like it's working, but not updating the View properly after the orientation. – Guy Micciche Feb 2 at 19:02
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.