1

我正在开发一个应用程序,我在其中实现了服务。但是当我退出我的应用程序时,服务停止(但从onDestroy()未被调用)然后再次启动(OnCreate()被调用)。

实际上,无论应用程序的状态如何,我都不想在创建服务后停止服务。随着服务onCreate()再次被调用,服务丢失了先前处理的数据。我试过START_STICKY但没有运气。

那么,我怎样才能保持我的服务运行?

这是我的服务代码,

public class ddservice extends Service{

public void onCreate() {
    super.onCreate();
    Log.e("dservice", "onCreate");
                  /*here i am processing some important data in
                background thread*/  
    }

    @Override
    public void onDestroy() {
        super.onDestroy();
        Log.e("ddservice", "onDestroy");

    }

    @Override
    public void onStart(Intent intent, int startid) {
        super.onStart(intent, startid);
        Log.e("ddservice", "onStart");

    }

    public int onStartCommand(Intent intent, int flags, int startId) {
        super.onStartCommand(intent, flags, startId);
        Log.e("ddservice", "onStartCommand");

        return START_STICKY;
    }   


    @Override
    public IBinder onBind(Intent intent) {
        return null;
    }   


}//service class ends here

我从 mainActivity 开始这项服务,

startService(new Intent(this, ddservice.class));
4

1 回答 1

0

您应该将服务作为前台启动Service.startForeground(int, Notification)

于 2013-01-09T10:29:11.603 回答