根据我的理解,IntentService会在当前请求完成后停止。
考虑以下情况,我将每隔100毫秒触发一次对IntentSerivce的请求,并且该请求的处理时间为90毫秒。
因此,对于我的每个请求 - startSerivce调用,将调用服务,并在90ms后(一旦处理完成),将调用IntentServicee的onDestroy。
我想让这个IntentServicee运行直到我说停止。这可能吗?
假设我将在我的服务中执行以下操作
步骤1对于我的所有请求都是通用的,所以我认为我可以在最初启动一次服务时执行它们,然后根据请求在HandleIntent中执行3-6。
答案 0 :(得分:50)
IntentService
实际上是一个包含Handler的非常小的类,问题是在处理了Intent之后它会调用stopSelf()
。
删除该单行会为您提供需要显式停止的IntentService:
public abstract class NonStopIntentService extends Service {
private String mName;
private volatile Looper mServiceLooper;
private volatile ServiceHandler mServiceHandler;
public NonStopIntentService(String name) {
super();
mName = name;
}
private final class ServiceHandler extends Handler {
public ServiceHandler(Looper looper) {
super(looper);
}
@Override
public void handleMessage(Message msg) {
onHandleIntent((Intent)msg.obj);
// stopSelf(msg.arg1); <-- Removed
}
}
@Override
public void onCreate() {
super.onCreate();
HandlerThread thread = new HandlerThread("IntentService[" + mName + "]");
thread.start();
mServiceLooper = thread.getLooper();
mServiceHandler = new ServiceHandler(mServiceLooper);
}
@Override
public void onStart(Intent intent, int startId) {
Message msg = mServiceHandler.obtainMessage();
msg.arg1 = startId;
msg.obj = intent;
mServiceHandler.sendMessage(msg);
}
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
onStart(intent, startId);
return START_STICKY;
}
@Override
public void onDestroy() {
mServiceLooper.quit();
}
@Override
public IBinder onBind(Intent intent) {
// TODO Auto-generated method stub
return null;
}
/**
* This method is invoked on the worker thread with a request to process.
* Only one Intent is processed at a time, but the processing happens on a
* worker thread that runs independently from other application logic.
* So, if this code takes a long time, it will hold up other requests to
* the same IntentService, but it will not hold up anything else.
*
* @param intent The value passed to {@link
* android.content.Context#startService(Intent)}.
*/
protected abstract void onHandleIntent(Intent intent);
}
答案 1 :(得分:2)
IntentService
从标准Service
类扩展而来,所以我不明白为什么不应该这样做。事实上我也会这样做。 ;)
答案 2 :(得分:1)
如果您在服务中没有太多工作要做,您可以延长常规服务。在onBind()中返回null并在onStartCommand()中接收返回START_STICKY的命令。
答案 3 :(得分:-2)
您需要为服务创建Service
和bind
,以防止其停止。请参阅docs。
将以bindService()
启动的服务将一直运行,直到没有活动仍然绑定到它。