我想关闭stopService();的课程,并且正在使用此方法,但我知道它是错误的,请帮助我:

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


谢谢 ...

最佳答案

用这个

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

10-04 12:26