Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7903981
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T09:52:53+00:00 2026-06-03T09:52:53+00:00

I am working on a custom launcher application. I want to get information like

  • 0

I am working on a custom launcher application. I want to get information like “How many cameras, message or browser applications are installed on my device“, that can be default or third party application? Please suggest me if have any idea for this.

Thanks in advance

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-03T09:52:54+00:00Added an answer on June 3, 2026 at 9:52 am

    To get the info you’re after, you’ll need to use PackageManager class and whatever else it provides. For example, the following code retrieves the list of available “applications”, that is Activities that are defined with Launch Intent in their respective AndroidManifest files – together with the .app files that contain them, launcher labels and icons, etc.

    PackageManager pm = getPackageManager();
    Intent intent = new Intent(Intent.ACTION_MAIN, null);
    String _label, _class, _src;
    Drawable _icon;
    
    for (ResolveInfo rInfo : pm.queryIntentActivities(intent, PackageManager.PERMISSION_GRANTED)) {
        if (pm.getLaunchIntentForPackage(rInfo.activityInfo.packageName) == null) {
            continue;
        }
        _class = rInfo.activityInfo.packageName;
        _label = rInfo.activityInfo.loadLabel(pm).toString();
        _src = rInfo.activityInfo.applicationInfo.sourceDir;
        _icon = rInfo.activityInfo.loadIcon(pm);
    
        Log.d("PackageList", "label: " + _label + ", package: " + _class + ", sourceDir: " + _src + ", icon: " + (_icon == null ? "blank" : "present"));
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm working up a custom Xcode template, and I'd like to change the way
I've got a working custom markup extension which retrieves information out of the DataContext
I'm working a custom workflow activity and would like to allow the user to
I have a custom URL protocol for an application I'm working on (as defined
I'm working a custom SpringSecurityFilter for my Grails application and I'm trying to use
I'm working on a custom installer / launcher in pure Java. How can I
I am working on Custom Progress Dialog . I've set its style like done
Working a simple custom authentication portion for my Ruby on Rails application. I'm trying
I have a working custom UserNamePasswordValidator that calls into my Oracle DB. This class
I have a nicely working custom CursorAdapter with customized ListView. This view allows the

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.