I want to get icons of my all installed apps. Can I get that icons using package manager? Is there any function for it? Or any other way to get icons of all installed apps i
try { String pkg = "com.app.my";//your package name Drawable icon = getContext().getPackageManager().getApplicationIcon(pkg); imageView.setImageDrawable(icon); } catch (PackageManager.NameNotFoundException ne) { }
Check here for more details.