在cordova android应用程序注销后的白色屏幕

时间:2015-05-27 19:41:34

标签: android

我在从应用程序注销后尝试更改页面后出现白屏。

        var activePage = $.mobile.pageContainer.pagecontainer("getActivePage").attr("id");
        if (activePage != "splashScreenPage") {
            console.log("in Active page >>> ");
            $.mobile.pageContainer.pagecontainer("change", "../../index.html", 
                            {reload : false, showLoadMsg : true });
        }

这就是我在做什么,有人遇到过类似的问题。我曾尝试在有关cordova中的白色屏幕的stackoverflow上搜索,但这些解决方案都没有奏效。

1 个答案:

答案 0 :(得分:0)

通过从android清单文件中删除android:launchMode="SingleTop"解决了这个问题。有关launchMode的更多信息,请访问here