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

I've been writing a fan app for my local cinematheque. For each film, I've added a "share" button:

Button shareButton = new Button(this.layoutContext);
shareButton.setText("שתף סרט");                             // "Share screening"
shareButton.setOnClickListener(new View.OnClickListener() {
    @Override
    public void onClick(View v) {
        share("שתף סרט",                                   // Pop-up title
            String.format("סרט בסינמטק שדרות - %s", name), // Subject
            shareScreeningText());                         // Body
    }
});
this.screeningExtraDataLayout.addView(shareButton);

...

public void share(String title, String subject, String body) {
    Intent sharingIntent = new Intent(android.content.Intent.ACTION_SEND);
    sharingIntent.setType("text/plain");
    sharingIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, subject);
    sharingIntent.putExtra(android.content.Intent.EXTRA_TEXT, body);
    this.layoutContext.startActivity(Intent.createChooser(sharingIntent, title)); 
}

Pressing the shareButton opens a popup button, whose title is שתף סרט. The pop-up offers almost every app installed on my device:

Share button popup

I want to have three share buttons - one for Instant messaging and text, one for social networks and one for email. How do I filter the shown apps according to these categories?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.