I'm looking for a way to search in the device all the apps which are capable to filter Intents with action "VIEW" and category "BROWSABLE"?
I found the following links and learned how to list all Intent Filters, but how can I list only those having only the aforementioned parameters?
Get intent filter for receivers
How to filter specific apps for ACTION_SEND intent (and set a different text for each app)
Thanks in advance
This code should do more or less what you want. The main problem is that I don't think you will find any activity that filters for
CATEGORY_BROWSABLE
without also requiring data of a specific type. I tried it on my phone and I didn't get anything useful until I added thesetData()
call on the Intent.