如何关闭stopService的主类

时间:2011-06-28 11:27:47

标签: java android

我想关闭stopService();的课程,我正在使用这种方法,但我知道这是假的,请帮助我:

if (Main_Page.this.finish() == true){
stopService(svc);
}

谢谢...

2 个答案:

答案 0 :(得分:1)

如果你想停止服务..那么在onDestroy()回调你的活动

public void onDestroy(){
 super.onDestroy();
 stopService(svc);
}

答案 1 :(得分:1)

使用此

public void onDestroy(){
 super.onDestroy();
 stopService(new Intent(this,yourservice.class));
}