Issue
I want to create an android code that can retrieve all installed apps in my device and display them with icons in a good format. How do I display the list of apps installed in the system with a good layout?
Solution
You might need to learn about
ListView
: http://developer.android.com/guide/topics/ui/layout/listview.htmlTo get a list of all installed apps, you can follow this link: How to get a list of installed android applications and pick one to run
Try putting the list of all apps in your
ListView
To get app icon, after you get the list of all apps, you will also get their package names - follow this link: How can I get the application's icon from the package name?
Answered By - Sruit A.Suk
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.