Currently I know that I can get all package icon from package manager. But, I just want to get those icons in the launcher. If I get the List from package manager, I will get those system’s apk such as bluetooth or launcher. Is there anyone knows how to make it?
Share
You need to get all the packages and out of those packages find out which one has intent filter defined for action.MAIN & category.LAUNCHER.
You can use getLaunchIntentForPackage() for this.