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 6200983
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T04:28:09+00:00 2026-05-24T04:28:09+00:00

Usually there is one launcher on an Android device. But sometimes users install a

  • 0

Usually there is one launcher on an Android device.
But sometimes users install a few while only one of them is active.

How can I check which launcher is currently active on my Android device?

Thanks.

  • 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-05-24T04:28:10+00:00Added an answer on May 24, 2026 at 4:28 am

    The home screen is started with the Intent ACTION_MAIN with category CATEGORY_HOME (from the javadoc for Intent). Use a ResolveInfo to this intent to know what application will start.

    This will give you the default Home application:

    final Intent intent = new Intent(Intent.ACTION_MAIN); 
    intent.addCategory(Intent.CATEGORY_HOME); 
    final ResolveInfo res = getPackageManager().resolveActivity(intent, 0); 
    if (res.activityInfo == null) {
        // should not happen. A home is always installed, isn't it?
    } else if ("android".equals(res.activityInfo.packageName)) {
        // No default selected     
    } else {
         // res.activityInfo.packageName and res.activityInfo.name gives you the default app
    } 
    

    Now, if you want to know which one is running, it will take more time, because ActivityManager is slow:

    // instead of the best, query all activities that match:
    final List<ResolveInfo> list = ((PackageManager)getPackageManager()).queryIntentActivities(intent, 0);
    // TODO from there, use ActivityManager to know which one is running and is in the list
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

My application server needs to notify users about some events via email. Usually there
I want to add more than one function to a ViewHelper. Usually there is
I know this topic has been discussed to death, but there is one thing
My background is C and C++. I like Python a lot, but there's one
I'm using mercurial queues quite alot, and I'm really happy with them, but there
In visual studio or any other IDE, usually there are two build configurations, Debug
In methods of controllers, there are usually many checks for doing the right thing.
Design patterns are usually related to object oriented design. Are there design patterns for
In my program there is one thread (receiving thread) that is responsible for receiving
There is one controversy I see in using Web APIs (RESTful service) to access

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.