Reputation: 554
Hello all am trying to list all the apps installed in the android device . I also want to get the icon assocaited with these app in xpm format.Is there a way for this?
Thanks in advance . kozlov
Upvotes: 0
Views: 508
Reputation: 1006819
Hello all am trying to list all the apps installed in the android device .
Use PackageManager
and getInstalledApplications()
.
I also want to get the icon assocaited with these app in xpm format.
Android does not support XPM images. XPM has been obsolete for over a decade. You are welcome to attempt your own conversion.
Upvotes: 1