Get icons of all installed apps in android

前端 未结 5 1322
眼角桃花
眼角桃花 2020-12-13 19:02

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

5条回答
  •  甜味超标
    2020-12-13 20:01

    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.

提交回复
热议问题