Android调起系统分享图片到其他应用
有时候分享不想接第三方的,其实如果你的分享要求不是很高,调系统的分享也是可以的。
一、思路:
用intent.action = Intent.ACTION_SEND
二、效果图:
三、关键代码:
//这个是分享图片(相册中的图片)
val path = FuFileUtils.addBitmapToAlbum(this, getDrawable(R.mipmap.head2)?.toBitmap());
val intent = Intent(Intent.ACTION_SEND)
intent.type = "image/*" //设置MIME类型
intent.putExtra(Intent.EXTRA_STREAM, Uri.parse(path)) //需要分享的文件URI
startActivity(Intent.createChooser(intent, "对话框标题"))
四、项目demo源码结构图:
有问题或者需要demo完整源码的私信我