Cordova backgroundmode插件将应用程序带到前台

时间:2019-05-03 07:57:08

标签: android cordova plugins background

我在我的Cordova应用程序中使用katzer / cordova-plugin-background-mode版本7.2.0(最新版本)。当我切换到另一个应用程序时,几秒钟后我的应用程序会自动进入前台。我不得不重复几次切换到另一个应用程序,直到它停留在前台。任何想法如何解决这个问题?我的插件初始化代码是:

cordova.plugins.backgroundMode.onactivate = function() {
    cordova.plugins.backgroundMode.disableWebViewOptimizations();
    cordova.plugins.backgroundMode.disableBatteryOptimizations();           
};

cordova.plugins.backgroundMode.ondeactivate = function() {};        
cordova.plugins.backgroundMode.onfailure = function(errorCode) {};

cordova.plugins.backgroundMode.setDefaults({
    title: "My title",
    text: ""My text,
    icon: 'icon'
});

cordova.plugins.backgroundMode.enable();

0 个答案:

没有答案