0

I know that I can launch another app by knowing its package name by doing something like this:

Intent launchIntent = getPackageManager().getLaunchIntentForPackage("com.example.yourapp");
startActivity(launchIntent);

However, I would like to open up a chooser with a list of apps that are known by their package names. These apps don't fall under the typical intent categories, like ACTION_SEND.

Is this possible?

h_k
  • 1,674
  • 1
  • 24
  • 46

1 Answers1

1

I would refer you to this: Custom filtering of intent chooser based on installed Android package name.

Check the answer from pleonasmik.

Hope that helps!

Alex
  • 962
  • 4
  • 15