how to get icon xpm icon file of an app installed in android
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开发者_StackOverflow format.Is there a way for this?
Thanks in advance . kozlov
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.
精彩评论