How to create some specific share intent
for social media?
Currently, my code is like this:
Intent share = new Intent(android.content.Intent.ACTION_SEND);
share.setType("text/plain");
share.putExtra(android.content.Intent.EXTRA_EMAIL, new String[] {});
share.putExtra(Intent.EXTRA_SUBJECT, "The EssexPass");
share.putExtra(Intent.EXTRA_TEXT, "Deal Name: " + Bussinessname);
share.putExtra(Intent.EXTRA_TEXT, "Deal: " + deals);
share.putExtra(Intent.EXTRA_TEXT, "Address: " + city + "," + country);
Log.e("Share intetn", "25th April ::-" + share);
startActivity(Intent.createChooser(share, "Share Deal"));
I use this code for share intent
but in facebook
I can't share.