こんにちは、アプリを開発していて、stopService(); を配置する必要があります。AlertDialog.Builder の PositiveButton でエラーが発生しましたが、私のコードは次のとおりです。
.... その他のコード
.setPositiveButton("Yes",newDialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog,int id)
{
finish();
System.exit(0);
stopService(new Intent(this, Service.class));
}
}
.... その他のコード