在应用中,如何获取本地的图片分享给其它应用中去。
第一步,你的获取你手机本地图片保存的绝对路径
第二部,分享,指定ACTION就搞定了
File file = new File(imageUrl);
if (file.exists()) {
Intent intent = new Intent();
intent.setAction(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(file), "image/*");//MIME TYPE
startActivity(intent);
}imageUrl就是本地保存的图片的绝对路径

本文介绍了一种从手机本地获取图片并分享到其他应用的方法。首先需要获取图片的绝对路径,然后通过Intent设置ACTION_VIEW来实现跨应用分享。
1262

被折叠的 条评论
为什么被折叠?



