gpt4 book ai didi

Android如何检查 Intent 服务是否仍在运行或已停止运行

转载 作者:IT老高 更新时间:2023-10-28 22:11:48 25 4
gpt4 key购买 nike

我需要知道队列中的所有 Intent 服务是否都已“消耗”,或者另一种方法是确定它是否仍在执行某些操作,以便在所有服务停止运行之前我不会继续。有什么想法吗?

最佳答案

试试这个可能对你有用

private boolean isMyServiceRunning() {
ActivityManager manager = (ActivityManager) getSystemService(ACTIVITY_SERVICE);
for (RunningServiceInfo service : manager.getRunningServices(Integer.MAX_VALUE)) {
if ("com.example.MyService".equals(service.service.getClassName())) {
return true;
}
}
return false;
}

关于Android如何检查 Intent 服务是否仍在运行或已停止运行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7440473/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com