choosing certain apps to appear in the share chooser

1.4k Views Asked by At

I have a button that shares the link to my app; but this button shows skype, gmail, whatsapp... how can I only show whatsapp for example? what can I do?

Plus when sending a mail I need to choose only gmail and hotmail for example how to do that?

I mean I know how to choose an app such as whatsapp: Sending message through WhatsApp

but how can I choose several apps.. thanks.

Edit Does someone have a tutorial on how to create your own share chooser? thanks.

1

There are 1 best solutions below

5
On

Create your own chooser and use the following codes:

public void share_on_gmail()
{
    Intent sharingIntent = is_intent_available("com.google.android.gm",
            "com.google.android.gm.ComposeActivityGmail", "Gmail");

    send_mail(sharingIntent);
}

public void share_on_yahoo()
{
    Intent sharingIntent = is_intent_available("com.android.email",
            "com.android.email.activity.MessageCompose", "Email");

    send_mail(sharingIntent);
}

public void share_on_facebook()
{
    Intent sharingIntent = is_intent_available("com.facebook.katana",
                    "com.facebook.katana.ShareLinkActivity", "Facebook");
}

public void share_on_twitter()
{
    Intent sharingIntent = is_intent_available("com.twitter.android",
                            "com.twitter.android.PostActivity", "Twitter");

    if (sharingIntent != null)
    {
        String subject = ((XmlNewsDetailsParser)xmlParser).subject;
        String body = ((XmlNewsDetailsParser)xmlParser).body;
        File  mFile = savebitmap(((Picture)itemsAdapter.getItem(0)).image.bitmap);
        sharingIntent.setType("image/png");
        sharingIntent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(mFile));
        sharingIntent.putExtra(Intent.EXTRA_TEXT, "القارئ العربي" + "\n\n" + subject + "\n\n" + Html.fromHtml(body));

        startActivity(sharingIntent);
    }
}

public Intent is_intent_available(final String className, String activityName, String appName)
{
        Intent I = new Intent(android.content.Intent.ACTION_SEND);
        if (!activityName.equals(""))
        {
            I.setClassName(className, activityName);
        }
        else
        {
            I.setPackage(className);
        }

        PackageManager packageManager = getPackageManager();
        List list = packageManager.queryIntentActivities(I, PackageManager.MATCH_DEFAULT_ONLY);

        if (list==null || list.size() == 0)
        {
            AlertDialog ad = new AlertDialog.Builder(this).create();
            ad.setMessage("Please install the " + appName + " app to share news with your friends.");
            ad.setButton2("Later", new DialogInterface.OnClickListener() {  
                @Override  
                public void onClick(DialogInterface dialog, int which) {  
                    dialog.dismiss();
                }
            });

            ad.setButton("Install Now", new DialogInterface.OnClickListener() {  
                @Override  
                public void onClick(DialogInterface dialog, int which) {  
                    Intent marketIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("market://search?q=" + className));
                    startActivity(marketIntent);
                }
            });  
            ad.show();
            return null;
        }
        return I;
}

public void send_mail(Intent sharingIntent)
{
    if (sharingIntent == null) return;
    String subject = ((XmlNewsDetailsParser)xmlParser).subject;
    String body = ((XmlNewsDetailsParser)xmlParser).body;
    File  mFile = savebitmap(((Picture)itemsAdapter.getItem(0)).image.bitmap);
    sharingIntent.setType("image/png");
    sharingIntent.putExtra(Intent.EXTRA_SUBJECT, subject + "القارئ العربي - ");
    sharingIntent.putExtra(Intent.EXTRA_TEXT, Html.fromHtml(body));
    sharingIntent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(mFile));
    startActivity(sharingIntent);
}

I have the class name and the activity name for a couple of more applications. I can provide it. Try those and I will modify the answer.