VOOZH about

URL: https://www.geeksforgeeks.org/android/different-ways-to-get-list-of-all-apps-installed-in-your-android-phone/

⇱ Different Ways to Get List of All Apps Installed in Your Android Phone - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Different Ways to Get List of All Apps Installed in Your Android Phone

Last Updated : 23 Jul, 2025

In this article, we are going to show the list of all the installed apps on your Android phone. So here we are going to learn how to implement that feature in three different ways. Note that we are going to implement this project in both Java and Kotlin Programming languages for Android.

Step-by-Step Implementation

Step 1: Create a New Project in Android Studio

To create a new project in Android Studio please refer to How to Create/Start a New Project in Android Studio. The code for that has been given in both Java and Kotlin Programming Language for Android.

Step 2: Working with the XML files

Navigate to the app > res > layout > activity_main.xml and add the below code to that file. Below is the code for the activity_main.xml file. 

Method 1

Go to the MainActivity file and refer to the following code. Below is the code for the MainActivity file. Comments are added inside the code to understand the code in more detail.

Output:

Method 2

Go to the MainActivity file and refer to the following code. Below is the code for the MainActivity file. Comments are added inside the code to understand the code in more detail.

Output: 

Method 3

Go to the MainActivity file and refer to the following code. Below is the code for the MainActivity file. Comments are added inside the code to understand the code in more detail.

Output:

Comment
Article Tags:
Article Tags:

Explore