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:

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?