android 判断当前应用是否在后台运行时得到的结果总是IMPORTANCE_FOREGROUND
巴扎黑
巴扎黑 2017-04-17 11:55:55
[Android讨论组]

我在servie或者receiver 中做测试,已经退出了应用的所有的activity,判断应用的状态,取到当前应用包名的RunningAppProcessInfo,但是它的importance值时100 ,也就是IMPORTANCE_FOREGROUND。迷惑了~

巴扎黑
巴扎黑

全部回复(1)
阿神

也许这不是你程序的问题,是判断应用当前状态的方法有问题

You can detect currently foreground/background application with ActivityManager.getRunningAppProcesses()which returns a list of RunningAppProcessInfo records. To determine if your application is on the foreground checkRunningAppProcessInfo.importance fieldfor equality to RunningAppProcessInfo.IMPORTANCE_FOREGROUND whileRunningAppProcessInfo.processName is equal to your application package name.
Also if you call ActivityManager.getRunningAppProcesses() from your application UI thread it will return importance IMPORTANCE_FOREGROUND for your task no matter whether it is actually in the foreground or not. Call it in thebackground thread(for example via AsyncTask) and it will return correct results.
详见Checking if an Android application is running in the background

热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 意见反馈 讲师合作 广告合作 最新更新
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习
PHP中文网抖音号
发现有趣的

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号