我正在尝试共享存储在资源文件夹中的GIF图像,我可以直接或在任何其他方式共享该GIF
Uri uri = Uri.parse("android.resource://com.myproject/drawable/xyz.gif");
Intent shareIntent = new Intent();
shareIntent.setAction(Intent.ACTION_SEND);
shareIntent.putExtra(Intent.EXTRA_STREAM, uri);
shareIntent.putExtra(Intent.EXTRA_TEXT, "sharing myapp");
shareIntent.setType("image/gif");
startActivity(Intent.createChooser(shareIntent, "Share from"));
使用上面的代码,但在选择器中找不到任何应用程序来打开gif,但在我的默认照片库中,我可以打开那个gif并分享。