在我的应用中,我正在尝试使用服务将我的应用程序重定向到另一个应用程序。
我在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));
}
那我该如何停止这项服务?