最近在做拼图,类似于美图秀秀那样的,想把拼好的图分享,这个功能很好实现,只要几行代码就ok: Intent shareIntent = new Intent(Intent.ACTION_SEND); File file = new File(filename); shareIntent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(file)); shareIntent.setType("image/*"); startActivity(Intent.createChooser(shareIntent, "分享")); 把这几行加在自己的分享按钮事件中就万事大吉。