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