我正在尝试找出如何在android应用中禁用预览信息。
Internet上有几篇有关此问题的文章,但是任何对我来说都不起作用。
我已经创建了...\platforms\android\app\src\main\res\values\themes.xml
:
<resources>
<style name="Theme" parent="android:style/Theme" />
<style name="Theme.MyFixedTheme" parent="Theme">
<item name="android:windowNoTitle">true</item>
<item name="android:windowContentOverlay">@null</item>
<item name="android:windowBackground">@drawable/bg.png</item>
<item name="android:windowDisablePreview">true</item>
</style>
</resources>
并修改了..\platforms\android\app\src\main\AndroidManifest.xml
:
<application
android:theme="@style/Theme.MyFixedTheme"
>
不幸的是,对我没有任何作用...
非常奇怪的是-SplashScreen
正在基于Chrome的演示(port:3000
)上运行,但在实际设备上却无法运行。我在考虑预加载过程的延迟,但是App没有使用任何互联网连接。这是一个测试JSON呈现功能的非常简单的应用。
也许问题出在APK生成过程中(我正在使用build.phonegap.com
)?
如果您知道如何手动解决此问题或使用某些插件,我将非常感谢您的帮助!