Android服务正在缓慢重启

时间:2014-12-10 10:20:24

标签: android android-activity android-service

我已经创建了一个服务并在“onStartCommand()”方法中返回了“START_REDELIVERY_INTENT”,因为我想在销毁App的MainActivity后运行该服务。

应该在使用先前的非空意图销毁应用程序后重新启动应用程序。但App需要一些时间才能重启。我们可以在设备设置中看到重启App的状态(下面是快照)。这个快照是在摧毁App后.....我该怎么办?请帮忙吗?

Android apps is restarting slowly

public int onStartCommand(Intent intent, int flags, int startId) {
    // TODO Auto-generated method stub
    super.onStartCommand(intent, flags, startId);
    Log.d(TAG, "intent: "+intent);

    return START_REDELIVER_INTENT;
}

0 个答案:

没有答案