如何使用共享意图将图像从url共享到whatsapp。如何将URL转换为位图然后共享它。
这是我的代码:
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();
}