Issue
I have tried various solution from stack overflow with no luck. What I want.
- I know package name of different applications.
- I want to get application Icon from those package name.
- Show those icons in Image View.
For example, I have a package name com.example.testnotification
. How to get this apps icon and show it in an ImageView?
Solution
Try this:
try
{
Drawable icon = getContext().getPackageManager().getApplicationIcon("com.example.testnotification");
imageView.setImageDrawable(icon);
}
catch (PackageManager.NameNotFoundException e)
{
e.printStackTrace();
}
Answered By - Tarun Varshney
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.