私のアプリでは、サービスを使用してアプリを別のアプリケーションにリダイレクトしようとしています。
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));
}
では、このサービスを停止するにはどうすればよいですか?