I am working on text sharing in all default available app like,facebook,gmail..etc.
Here I put snapshot of my code.
final Intent emailIntent1 = new Intent(
android.content.Intent.ACTION_SEND);
emailIntent1.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
emailIntent1.setAction("https://play.google.com/store");
emailIntent1.putExtra(Intent.EXTRA_TEXT,"https://play.google.com/store");
emailIntent1.setType("image/png");
startActivity(Intent.createChooser(emailIntent1, "send"));
My problem is ,I can not share text in facebook.
Your answer would be appreciated.