I’d like to get a list of apps on an Android device that are able to use (or to be launched with) PNG’s.
I’m using this code:
final Intent msg = new Intent(Intent.ACTION_MAIN, null);
msg.setType("image/png");
final List pkgAppsList = context.getPackageManager().queryIntentActivities(msg, 0);
But it return zero, which does not reflect reality.
Any other ways of asking the framework about app abilities?
Pom
Try this instead