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?