In my app I want to make a list of app icons using list view. I can get the app icon by using its package name. But I want to display the app icons(no text) on list view so how can I do that. Anyone help me.
This is the code I use to get the application icon.
Drawable icon= getPackageManager().loadApplicationIcon("package name");
image view.setDrawable(icon);
My question is how we can view the the application icons in list view.