How do I get to the Icon Launcher from another Android application on the device if I know its Package Name?
Example
String googlePackageName = \"com.go
Use PackagerManager's getApplicationIcon() for this task:
Drawable appIcon = getPackageManager().getApplicationIcon("com.google.maps");