How to get a list of installed android applications and pick one to run

后端 未结 19 1891
误落风尘
误落风尘 2020-11-21 06:26

I asked a similar question to this earlier this week but I\'m still not understanding how to get a list of all installed applications and then pick one to run.

I\'v

19条回答
  •  我寻月下人不归
    2020-11-21 07:17

    To filter on sytem based apps :

    private boolean isSystemPackage(ResolveInfo ri) {
        return (ri.activityInfo.applicationInfo.flags & ApplicationInfo.FLAG_SYSTEM) != 0;
    }
    

提交回复
热议问题