Hello guys,
I'm developing and Android application using the Flex 4.6 SDK version and
AIR 4.0 SDK. The tasks I'm concerned about are starting after the os boots
up and being a full screen application.
The application has the following manifest parameters (among others):
/
<aspectRatio>landscape</aspectRatio>
<autoOrients>true</autoOrients>
<fullScreen>true</fullScreen>
/
and:
/
<application android:enabled="true">
<activity android:excludeFromRecents="true">
<intent-filter>
<action
android:name="android.intent.action.MAIN" />
<category
android:name="android.intent.category.DEFAULT" />
<category
android:name="android.intent.category.LAUNCHER" />
<category
android:name="android.intent.category.HOME" />
</intent-filter>
</activity>
</application>
/
So as you may see, the configuration is intended to launch the application
as the HOME app, in landscape mode as soon as the device starts.
The application does in fact do everything it's supposed to but when the
device boots up, the app does not starts in full screen because you can see
the notification/status bar. Next you may see the problem.
<http://apache-flex-users.2333346.n4.nabble.com/file/n7550/STARTUP_PROBLEM.png>
What I need to do is to make the app start at full screen when the device
boots. Now, the only way to make it start at full screen mode is to restart
the application after the device finished booting up.
I hope you can help me solve this anoying problem.
--
View this message in context:
http://apache-flex-users.2333346.n4.nabble.com/App-doesn-t-start-at-full-screen-after-Android-reboots-tp7550.html
Sent from the Apache Flex Users mailing list archive at Nabble.com.