Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 Adobe Air 3.4 SDK 编写了一个应用程序。我已将它部署到我的 android v4.0.4 设备上。它工作正常(按预期在全屏模式下)。
现在,在设备向用户显示原生 android 屏幕之前,应用程序有望自动以全屏模式运行。
我怎样才能做到这一点?建议任何人?
在 AIR 本机类中,有一个名为 startAtLogin 的东西,您可以将其设置为 true 或 false :
NativeApplication.nativeApplication.startAtLogin = true;
但我怀疑它可以用来覆盖原生的android屏幕并在它之前显示。我想已经进行了一些内置检查,以确保在屏幕准备好并显示之前没有启动任何内容。
不过,您可以尝试一下:-)