即使我们关闭gui接口,代号应用程序如何继续在后端运行

时间:2017-09-26 14:31:16

标签: codenameone

即使Android或i-phone中的应用程序已关闭,我们如何在后端运行应用程序

1 个答案:

答案 0 :(得分:1)

您可以执行BackgroundFetch,但由于操作系统限制以及用户手动关闭该功能的能力,无法保证始终处于活动状态。

public class MyApplication implements BackgroundFetch {

    @Override
    public void performBackgroundFetch(long deadline, Callback<Boolean> onComplete) {
        //perform the background activity here
        onComplete.onSucess(Boolean.TRUE);
    }
}

您可以找到示例代码here