我正在使用一段 android 代码来学习如何启动应用程序和制作启动器,但我不知道如何过滤掉诸如 faceunlock 和 facebok 之类的应用程序以获得 htc 感觉以及类似的应用程序
public static List<ApplicationInfo> getInstalledApplication(Context context) {
PackageManager packageManager = context.getPackageManager();
Intent main = new Intent(Intent.ACTION_MAIN, null);
main.addCategory(Intent.CATEGORY_LAUNCHER);
List<ApplicationInfo> apps = packageManager.getInstalledApplications(0);
Collections.sort(apps, new ApplicationInfo.DisplayNameComparator(packageManager));
return apps;
}
我知道我可能是一些简单的错误,但我似乎无法找到它请帮助并解释答案,以便我可以从中学习:如果需要,我会发布更多代码