Jump to content

Search the Community

Showing results for tags 'Android Application'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • W3Schools
    • General
    • Suggestions
    • Critiques
  • HTML Forums
    • HTML/XHTML
    • CSS
  • Browser Scripting
    • JavaScript
    • VBScript
  • Server Scripting
    • Web Servers
    • Version Control
    • SQL
    • ASP
    • PHP
    • .NET
    • ColdFusion
    • Java/JSP/J2EE
    • CGI
  • XML Forums
    • XML
    • XSLT/XSL-FO
    • Schema
    • Web Services
  • Multimedia
    • Multimedia
    • FLASH

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


AIM


MSN


Website URL


ICQ


Yahoo


Jabber


Skype


Location


Interests


Languages

Found 2 results

  1. Java jdk v- 15 class not found error on android command line tools install manually
  2. 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);
×
×
  • Create New...