Hi,
is there a way to get a list of installed apps (package names) which accept a specific intent?
For instance, I would like to get the package-names of all installed apps (on a phone/tablet) that can run or handle the following intent:
This is similar to what Android does when you click on a video-file (for instance) and Android shows you a list of apps you can use for playing the video.
Thanks.
is there a way to get a list of installed apps (package names) which accept a specific intent?
For instance, I would like to get the package-names of all installed apps (on a phone/tablet) that can run or handle the following intent:
B4X:
Intent i = new Intent("android.intent.action.VIEW");
i.setDataAndType(uri, "video/*");
//uri is a hyper-link
This is similar to what Android does when you click on a video-file (for instance) and Android shows you a list of apps you can use for playing the video.
Thanks.
Last edited: