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?