使用ACTION_SEND共享文件不适用于共享IT android
我正在尝试使用
分享图片String path = newString;
Uri uri = Uri.parse(path);
Intent intent = new Intent(Intent.ACTION_SEND);
intent.setType("image/jpeg");
intent.putExtra(Intent.EXTRA_STREAM, uri);
startActivity(Intent.createChooser(intent, "Share Image"));
然而我收到错误sending this content type is not supported
是否有可以轻松分享的工具或实用程序
我正在寻找的是替代Intent.ACTION_SEND
在youtube,FB,分享,邮件或其他社交媒体或其他平台上发送文件
我不想使用wifi直接作为替代
答案 0 :(得分:0)
这有效
compact()