我想在用户强制关闭应用程序后检查服务是否正在运行。我怎样才能做到这一点。我在广播接收器的 onReceive 中执行此操作。但即使在强制关闭后,它也会显示服务正在运行 Toast。
boolean isServiceRunning = AppSettings.getServiceRunning(context);
if (isServiceRunning)
{
Toast.makeText(context,"service running", Toast.LENGTH_LONG).show();
}
else
{
Toast.makeText(context,"service stopped", Toast.LENGTH_LONG).show();
}