I need to display a screen with all the installed applications. I can do this already, but I need to filter some of the system applications. I am doing like this:
if((appInfo.flags & ApplicationInfo.FLAG_SYSTEM) == 1)
This works, but the problem is that it hides apps like System, Video Player, and Sound Recorder. However, I need these apps to show up, too. The question is, how to do this?
You'll have to filter them manually via their process-name, e.g.:
if(appInfo.packageName().equals("com.android.soundrecorder"))
Please post more of your code if this doesn't work!