I am creating an android app for jokes. I have multiple jokes which i want to share with whatsapp users.
Do i need write share intent individually for each jokes?
For Example:
public void share(View view)
{
Intent sendIntent = new Intent();
sendIntent.setAction(Intent.ACTION_SEND);
sendIntent.putExtra(Intent.EXTRA_TEXT,
"Q: What did the butcher say when he backed into the meat-grinder?
A: Looks like I'm getting a little behind in my work!");
sendIntent.setType("text/plain");
startActivity(sendIntent);
}
please help.