Hi I followed the below tutorial and successfully listed all of my installed apps in my application.
List all installed apps in style
However it does not list th
When you query Android to get the list of installed applications, you will get a List<ApplicationInfo>. Android supplies an ApplicationInfo.DisplayNameComparator for those:
List<ApplicationInfo>
ApplicationInfo.DisplayNameComparator
Collections.sort(apps, new ApplicationInfo.DisplayNameComparator(pm));
(where pm is an instance of PackageManager).
pm
PackageManager