0

如何使用共享意图将图像从 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();
                    }
4

0 回答 0