How can i share a image from url to whatsapp using share intent. How can i convert the URL to bitmap and then share it.
That's my code:
Intent whatsappIntent = new Intent(Intent.ACTION_SEND);
whatsappIntent.setType("image/*");
whatsappIntent.setPackage("com.whatsapp");
whatsappIntent.putExtra(Intent.EXTRA_STREAM, ???);
try {
startActivity(whatsappIntent);
} catch (android.content.ActivityNotFoundException ex) {
Toast.makeText(getActivity(), "Whatsapp is not installed on this device", Toast.LENGTH_SHORT).show();
}