Android 如何实现分享图片功能

来源:互联网 发布:淘宝商城男士钱包 编辑:程序博客网 时间:2024/05/22 18:00

对于图片,如何实现分享功能,请参阅下面的代码:

// 分享照片public void SharePhoto(String photoUri,final Activity activity) {Intent shareIntent = new Intent(Intent.ACTION_SEND);File file = new File(photoUri);shareIntent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(file));shareIntent.setType("image/jpeg");StartActivity(Intent.createChooser(shareIntent, activity.getTitle()));}


原创粉丝点击