杀死android中的服务?

时间:2012-09-01 15:46:22

标签: android android-service

在我的应用中,我正在尝试使用服务将我的应用程序重定向到另一个应用程序。

我在onPause方法中启动此服务,我试图在onResume方法中停止此服务,但服务仍然保持运行并自动重定向。

protected void onPause() {
    Intent in = new Intent(HelloappActivity.this,SimpleService.class);
    in.putExtra("qwe", k);      
    startService(in);
    super.onPause();
}

protected void onResume() {
    stopService(new Intent(HelloappActivity.this,SimpleService.class));
}

那我该如何停止这项服务?

0 个答案:

没有答案