Jump to content

Question about list of Installed application in Android phone.


timcph2008

Recommended Posts

Hi guys,

I wanna create a list of the installed application for practice.

the following code is from another post: https://buckysroom.org/forum/topic.php?id=503
I used the code that they suggest, but there has some errors.
app cannot be resolved to a variable
pm cannot be resolved
apps cannot be resolved to a variable
How should I change it?
Also, what the pm and apps are in the apps?
Thank you so much for your help!!
List<ApplicationInfo> installedApps = new ArrayList<ApplicationInfo>(); for(ApplicationInfo app : apps) {    //checks for flags; if flagged, check if updated system app    if((app.flags & ApplicationInfo.FLAG_UPDATED_SYSTEM_APP) == 1) {        installedApps.add(app);    //it's a system app, not interested    } else if ((app.flags & ApplicationInfo.FLAG_SYSTEM) == 1) {        //Discard this one    //in this case, it should be a user-installed app    } else {        installedApps.add(app);    }} String label = (String)pm.getApplicationLabel(app);Drawable icon = pm.getApplicationIcon(app);

 

Link to comment
Share on other sites

  • 2 weeks later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...