Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'd like to leverage the built-in intent chooser to display a custom filtered list of apps for user to select from and launch.

I know how to get a list of installed packages:

final Intent myIntent = new Intent(android.content.Intent.ACTION_MAIN);  
List<ResolveInfo> resInfoList = getPackageManager().queryIntentActivities(myIntent, 0);

At this point I want to filter the list based on a specific string (or variation of strings) contained within the package name, which I can figure out how to do as well.

But here's where I get stuck. As far as I know, Intent.createChooser() takes only a single target Intent as a parameter. I was hoping there was an overload that took a list of intents based on package and class names or something. But I don't see anything like that. Did I miss that somewhere?

So the question is, is this possible to do with a built-in chooser, or do I have to construct my own with AlertDialog Builder? I'm hoping to avoid the later.

Thanks in advance.

share|improve this question

2 Answers

up vote 8 down vote accepted

The only one additional parameter for the chooser is Intent.EXTRA_INITIAL_INTENTS. Its description is:

A Parcelable[] of Intent or LabeledIntent objects as set with putExtra(String, Parcelable[]) of additional activities to place a the front of the list of choices, when shown to the user with a ACTION_CHOOSER.

I haven't found any way in Android sources to exclude other activities from the list, so it seems there's no way to do what you want to do using the chooser.

EDIT: That's really easy to find out. Just check ChooserActivity and ResolverActivity source code. These classes are rather small.

share|improve this answer
It seems that what I was looking for is not possible, so you were closest (and only). – Kon Apr 26 '11 at 0:52
This is the correct answer. Having tried both and reading the docs it is definitely not possible to remove items from the list. – Tom Dignan Feb 12 at 8:23

Here is a solution i whipped up. I use it to have different intent data for each selection in the chooser, but you can easily remove an intent from the list as well. Hope this helps:

        List<Intent> targetedShareIntents = new ArrayList<Intent>();
        Intent shareIntent = new Intent(android.content.Intent.ACTION_SEND);
        shareIntent.setType("text/plain");
        List<ResolveInfo> resInfo = getPackageManager().queryIntentActivities(shareIntent, 0);
        if (!resInfo.isEmpty()){
            for (ResolveInfo resolveInfo : resInfo) {
                String packageName = resolveInfo.activityInfo.packageName;
                Intent targetedShareIntent = new Intent(android.content.Intent.ACTION_SEND);
                targetedShareIntent.setType("text/plain");
                targetedShareIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, "subject to be shared");
                if (StringUtils.equals(packageName, "com.facebook.katana")){
                    targetedShareIntent.putExtra(android.content.Intent.EXTRA_TEXT, "http://link-to-be-shared.com");
                }else{
                    targetedShareIntent.putExtra(android.content.Intent.EXTRA_TEXT, "text message to shared");
                }

                targetedShareIntent.setPackage(packageName);
                targetedShareIntents.add(targetedShareIntent);


            }
            Intent chooserIntent = Intent.createChooser(targetedShareIntents.remove(0), "Select app to share");

            chooserIntent.putExtra(Intent.EXTRA_INITIAL_INTENTS, targetedShareIntents.toArray(new Parcelable[]{}));

            startActivity(chooserIntent);
        }
share|improve this answer
2  
thanks, and a little tip: to preserve applications order from getPackageManager().queryIntentActivities(shareIntent, 0);, call Intent chooserIntent = Intent.createChooser(targetedShareIntents.remove(targetedShareIntents.size()-1), "Select app to share");, chooser adds its initializing intent to the end of extra_initial_intents :) – Berťák Aug 30 '12 at 9:34
1  
gumbercules, I tried the above code, but the message doesn't appear on the post. It shows me a facebook page with empty message... – Ramesh Sangili Feb 13 at 20:02
@TomDignan I've tested it and it works. If you want to remove an intent, don't add it to the targetedShareIntents. – cjc343 Mar 19 at 20:07
did some more research and it is important to use targetedShareIntent.setPackage(packageName) (developer.android.com/reference/android/content/…) to only allow intents from a given package (that would be one selected from the targetedShareIntents. Afterwards custom intents are appended. To improve this code even more, specifyfurther with targetedShareIntent.setClassName(packageName,className) – Makibo May 22 at 5:19
I created a gist for a reusable solution based on this answer gist.github.com/mediavrog/5625602 – Makibo May 22 at 6:26
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.