Skip to content Skip to sidebar Skip to footer

How To Get The List Of Installed Browser Apps In An Android Device Programmatically (package Names)

How to get the list of Installed Browser Apps Package Names in an Android Device Programmatically, So that I have to show the list of Browser Apps in my Mobile.

Solution 1:

Create an Intent that describes the type of activity that you want to match. Pass that to queryIntentActivities() on a PackageManager. The resulting list of ResolveInfo objects contains details of the activities — and their associated apps — that match the Intent. If the list is empty, there are no matches.


Post a Comment for "How To Get The List Of Installed Browser Apps In An Android Device Programmatically (package Names)"