0
I’m using the action_send
, but it does not give me the options of 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 get more app options to share? Something like this:
Even having facebook and apps from other social networks installed on the device, they do not appear?
– Wakim