我有一项服务,我从我的活动开始。 现在,serivce通过从onStartCommand()启动一个新线程来执行一些任务 我希望在线程完成其工作后停止服务。
我尝试使用像这样的处理程序
public class MainService extends Service{
private Timer myTimer;
private MyHandler mHandler;
@Override
public IBinder onBind(Intent arg0) {
// TODO Auto-generated method stub
return null;
}
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
mHandler = new MyHandler();
myTimer = new Timer();
myTimer.schedule(new MyTask(), 120000);
return 0;
}
private class MyTask extends TimerTask{
@Override
public void run() {
Intent intent = new Intent(MainService.this, MainActivity.class);
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intent);
mHandler.sendEmptyMessage(0);
}
}
private static class MyHandler extends Handler{
@Override
public void handleMessage(Message msg) {
super.handleMessage(msg);
Log.e("", "INSIDE handleMEssage");
//stopSelf();
}
}
首先它给了我一个警告,如果处理程序类不是静态的,它将导致泄漏 在我将其设置为静态之后,无法调用stopSelf(),因为它是非静态的。
我的方法是正确的还是有更简单的方法?
答案 0 :(得分:5)
你应该使用IntentService而不是服务。它会在单独的线程中自动启动,并在任务完成时自行停止。
public class MyService extends IntentService {
public MyService(String name) {
super("");
}
@Override
protected void onHandleIntent(Intent arg0) {
// write your task here no need to create separate thread. And no need to stop.
}
}
答案 1 :(得分:2)
将IntentService的基类用于按需处理异步请求(表示为Intents)的服务。客户端通过startService(Intent)
电话发送请求;根据需要启动服务,使用工作线程依次处理每个Intent,并在工作失败时自行停止。
答案 2 :(得分:1)
试试这个,
private static class MyHandler extends Handler{
@Override
public void handleMessage(Message msg) {
super.handleMessage(msg);
Log.e("", "INSIDE handleMEssage");
MainService.this.stopSelf();;
}
}