我想关闭stopService();
的课程,我正在使用这种方法,但我知道这是假的,请帮助我:
if (Main_Page.this.finish() == true){
stopService(svc);
}
谢谢...
答案 0 :(得分:1)
如果你想停止服务..那么在onDestroy()回调你的活动
public void onDestroy(){
super.onDestroy();
stopService(svc);
}
答案 1 :(得分:1)
使用此
public void onDestroy(){
super.onDestroy();
stopService(new Intent(this,yourservice.class));
}