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.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
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.
The home screen is started with the
IntentACTION_MAINwith categoryCATEGORY_HOME(from the javadoc forIntent). Use aResolveInfoto this intent to know what application will start.This will give you the default Home application:
Now, if you want to know which one is running, it will take more time, because ActivityManager is slow: