可能重複:
How to get the list of running applications?如何獲取Android中活動應用程序的列表?
如何獲得在活躍的Android應用程序的列表? 感謝您的回答。
可能重複:
How to get the list of running applications?如何獲取Android中活動應用程序的列表?
如何獲得在活躍的Android應用程序的列表? 感謝您的回答。
ActivityManager manager = (ActivityManager)this.getSystemService(ACTIVITY_SERVICE);
List<RunningAppProcessInfo> processes = manager.getRunningAppProcesses();
然後你的RunningAppProcessInfo個集合,你可能想尋找在this
所以我得到所有正在運行的應用程序。我只需要活躍! –
這可能是對事情如何工作的誤解。你如何定義一個「主動」過程? –
這個應用程序如何確定這一點? [Active Apps Ads](https://play.google.com/store/apps/details?id=com.elnware.ActiveAppsAds&feature=search_result) –
嘗試複製你的問題,然後將其粘貼在谷歌搜索框,你會發現這是一個DUP問題:http://stackoverflow.com/questions/3304685/how-to-get-the-list-of-running-applications – wtsang02