如何使用共享意图从URL共享图像到whatsapp

时间:2018-05-03 17:48:17

标签: android android-intent share-intent

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

0 个答案:

没有答案
相关问题