I'm using action_send
, but it does not give me options for WhatsApp, Facebook, and other social networks. Only Gmail and Message.
Code I'm using is:
Intent share = new Intent(android.content.Intent.ACTION_SEND);
share.setType("text/plain");
share.addFlags(Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET);
share.addFlags(Intent.FLAG_ACTIVITY_NEW_DOCUMENT);
share.putExtra(Intent.EXTRA_SUBJECT, "Enter your title here");
share.putExtra(Intent.EXTRA_TEXT, "Enter your description here");
startActivity(Intent.createChooser(share, "Share"));
How can I make more application options appear for me to share? Something like this: