本文介绍了要检索在手机上安装的应用程序所需要的功能列表的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我能够通过软件包管理器获取在我的code安装的应用程序的列表:
公开的ArrayList< InstalledAppData> importInstalledAppsData(){
ArrayList的< InstalledAppData> APPLIST =新的ArrayList< InstalledAppData>();
软件包管理系统pkgManager = getApplicationContext()getPackageManager()。
清单< ApplicationInfo>包= getInstalledApplicationsList(pkgManager);
串DEVICEID = Util.getDeviceId(getApplicationContext()); 对于(ApplicationInfo packageInfo:包){
字符串的packageName = packageInfo.packageName;
串的appName =;
字符串appFile = packageInfo.sourceDir;
长installTime =新的文件(appFile).lastModified();
字符串状态=S;
如果((packageInfo.flags&放大器; ApplicationInfo.FLAG_SYSTEM)== 1){
的appName =(字符串)pkgManager.getApplicationLabel(packageInfo);
}
其他{
的appName =(字符串)pkgManager.getApplicationLabel(packageInfo);
}
InstalledAppData数据=新InstalledAppData(DEVICEID,的packageName,的appName,installTime,地位);
appList.add(数据);
}
返回APPLIST;
}
现在我想找出当前具有位置服务我enabled.How能做到这一点的手机上的所有安装的应用程序?
日Thnx提前
解决方案
You can't. The Android SDK has no means for one application to spy on another application's use of LocationManager
.
You can register for the PASSIVE_PROVIDER
to see if anyone happens to be requesting location updates, but you cannot tie it down to a specific application.
这篇关于要检索在手机上安装的应用程序所需要的功能列表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!