String url = "http://www.wikihow.com/images/d/d0/Get-the-URL-for-Pictures-Step-1-Version-2.jpg";
Intent share = new Intent(Intent.ACTION_SEND);
share.setType("image/*");
share.setPackage("com.whatsapp");
share.putExtra(android.content.Intent.EXTRA_SUBJECT, "Subject");
/*if (text!=null){
share.putExtra(Intent.EXTRA_TEXT,text);
}
if (path!=null){
share.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(new File(path)));
}*/
share.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(new File(url)));
context.startActivity(Intent.createChooser(share, "Whats App"));
Cant share image from url to whats app. Please suggest me how can share image from url to whatsapp & also facebook in android??
Thanks,
Nitin