我知道有很多与此相关的主题,但它们都不适合我 我想要的只是共享一个存储在/ drawable中的图像
这是我的代码
Uri uri=Uri.parse("android.resource://[my_package_name]/drawable/image1");
i.setAction(Intent.ACTION_SEND);
i.putExtra(Intent.EXTRA_STREAM,uri);
i.setType("image/jpeg");
startActivity(Intent.createChooser(i,"share using"));
它不起作用......